SAGA2: Fix RestartGame
This commit is contained in:
parent
81ddd7da0d
commit
a110e24d56
1 changed files with 2 additions and 9 deletions
|
@ -555,15 +555,8 @@ void cleanupGameState(void) {
|
|||
#endif
|
||||
|
||||
void checkRestartGame(const char *exeName) {
|
||||
#if 0
|
||||
char saveRestart[260];
|
||||
g_vm->getSavegameFile(999, saveRestart);
|
||||
if (!fileExists(saveRestart) ||
|
||||
(getFileDate(exeName) > getFileDate(saveRestart)))
|
||||
saveGameState(999, saveRestart);
|
||||
#endif
|
||||
|
||||
warning("STUB: checkRestartGame()");
|
||||
Common::String saveRestart = g_vm->getSavegameFile(999);
|
||||
g_vm->saveGameState(999, saveRestart, true);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue