mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 16:03:05 +00:00
HUGO: Use slot 99 as the fallback save
Use slot 99 as fallback instead of slot 0, which is normally used for autosaves
This commit is contained in:
parent
872c667b2e
commit
08ad9d9ff7
@ -298,7 +298,7 @@ Common::Error HugoEngine::run() {
|
||||
_status._skipIntroFl = true;
|
||||
_file->restoreGame(loadSlot);
|
||||
} else {
|
||||
_file->saveGame(0, "New Game");
|
||||
_file->saveGame(99, "New Game [reserved]");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -290,7 +290,7 @@ void Parser::keyHandler(Common::Event event) {
|
||||
break;
|
||||
case Common::KEYCODE_n:
|
||||
if (Utils::yesNoBox("Are you sure you want to start a new game?"))
|
||||
_vm->_file->restoreGame(0);
|
||||
_vm->_file->restoreGame(99);
|
||||
break;
|
||||
case Common::KEYCODE_s:
|
||||
if (gameStatus._viewState == kViewPlay) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user