mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-01 14:21:41 +00:00
SAGA2: Fix RestartGame
This commit is contained in:
parent
81ddd7da0d
commit
a110e24d56
@ -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…
x
Reference in New Issue
Block a user