From c692fc91af34b121e31dcc00b5f9e89e73773456 Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Thu, 3 Nov 2022 18:16:50 +0300 Subject: [PATCH] Fix error check Closes #196 --- src/options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.cc b/src/options.cc index a288d89..d66a458 100644 --- a/src/options.cc +++ b/src/options.cc @@ -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;