screenshot file name format updated

This commit is contained in:
MihailRis 2023-11-21 01:07:25 +03:00
parent 9629135791
commit f2f9343737

View File

@ -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();