Codechange: use std::string for the screenshot name/path

This commit is contained in:
Rubidium
2023-05-25 18:23:26 +02:00
committed by rubidium42
parent 0e56a73fb8
commit 87ccff16b5
3 changed files with 17 additions and 22 deletions

View File

@@ -34,6 +34,6 @@ bool MakeMinimapWorldScreenshot();
extern std::string _screenshot_format_name;
extern uint _num_screenshot_formats;
extern uint _cur_screenshot_format;
extern char _full_screenshot_name[MAX_PATH];
extern std::string _full_screenshot_path;
#endif /* SCREENSHOT_H */