[Scummvm-git-logs] scummvm master -> a78240f02654f07059719b78f1203df4a61a9df6
athrxx
athrxx at scummvm.org
Wed Aug 5 20:43:10 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
a78240f026 KYRA: (LOL) - adjust auto save date format
Commit: a78240f02654f07059719b78f1203df4a61a9df6
https://github.com/scummvm/scummvm/commit/a78240f02654f07059719b78f1203df4a61a9df6
Author: athrxx (athrxx at scummvm.org)
Date: 2020-08-05T22:41:58+02:00
Commit Message:
KYRA: (LOL) - adjust auto save date format
Changed paths:
engines/kyra/gui/gui_lol.cpp
diff --git a/engines/kyra/gui/gui_lol.cpp b/engines/kyra/gui/gui_lol.cpp
index 7b2b485217..5f9dee26a6 100644
--- a/engines/kyra/gui/gui_lol.cpp
+++ b/engines/kyra/gui/gui_lol.cpp
@@ -2683,7 +2683,7 @@ int GUI_LoL::clickedSaveMenu(Button *button) {
lvl1.toUppercase();
lvl2.toLowercase();
ts = ts + lvl1 + lvl2;
- ts += Common::String::format(" / %02d-%02d-%02d - %02d:%02d:%02d", td.tm_mday, td.tm_mon + 1, td.tm_year + 1900, td.tm_hour, td.tm_min, td.tm_sec);
+ ts += Common::String::format(" / %02d-%02d-%02d - %02d:%02d:%02d", td.tm_year + 1900, td.tm_mon + 1, td.tm_mday, td.tm_hour, td.tm_min, td.tm_sec);
strcpy(_saveDescription, ts.c_str());
}
More information about the Scummvm-git-logs
mailing list