SCI: adding save description, if none was entered
fixes bug #3061964 svn-id: r52637
This commit is contained in:
parent
54865f4837
commit
10a460443b
1 changed files with 8 additions and 0 deletions
|
@ -577,6 +577,14 @@ reg_t kSaveGame(EngineState *s, int argc, reg_t *argv) {
|
||||||
dialog->setSaveMode(true);
|
dialog->setSaveMode(true);
|
||||||
savegameId = dialog->runModal(plugin, ConfMan.getActiveDomainName());
|
savegameId = dialog->runModal(plugin, ConfMan.getActiveDomainName());
|
||||||
game_description = dialog->getResultString();
|
game_description = dialog->getResultString();
|
||||||
|
if (game_description.empty()) {
|
||||||
|
// create our own description for the saved game, the user didnt enter it
|
||||||
|
TimeDate curTime;
|
||||||
|
g_system->getTimeAndDate(curTime);
|
||||||
|
curTime.tm_year += 1900; // fixup year
|
||||||
|
curTime.tm_mon++; // fixup month
|
||||||
|
game_description = Common::String::printf("%02d.%02d.%04d / %02d:%02d:%02d", curTime.tm_mday, curTime.tm_mon, curTime.tm_year, curTime.tm_hour, curTime.tm_min, curTime.tm_sec);
|
||||||
|
}
|
||||||
delete dialog;
|
delete dialog;
|
||||||
g_sci->_soundCmd->pauseAll(false); // unpause music ( we can't have it paused during save)
|
g_sci->_soundCmd->pauseAll(false); // unpause music ( we can't have it paused during save)
|
||||||
if (savegameId < 0)
|
if (savegameId < 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue