diff --git a/src/files/engine_files.cpp b/src/files/engine_files.cpp index 3dc920f8..a9232076 100644 --- a/src/files/engine_files.cpp +++ b/src/files/engine_files.cpp @@ -17,8 +17,7 @@ path enginefs::get_screenshot_file(string ext) { auto t = std::time(nullptr); auto tm = *std::localtime(&t); - const char* format = "%d-%m-%Y_%H-%M-%S"; - + const char* format = "%Y-%m-%d_%H-%M-%S"; std::stringstream ss; ss << std::put_time(&tm, format); string datetimestr = ss.str();