Fix error check

Closes #196
This commit is contained in:
Alexander Batalov 2022-11-03 18:16:50 +03:00
parent a38151bf2c
commit c692fc91af
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ int showOptionsWithInitialKeyCode(int initialKeyCode)
case KEY_UPPERCASE_S:
case KEY_LOWERCASE_S:
case 500:
if (lsgSaveGame(1) != 1) {
if (lsgSaveGame(LOAD_SAVE_MODE_NORMAL) == 1) {
rc = 1;
}
break;