diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/sherlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/sherlock.cpp b/engines/sherlock/sherlock.cpp index a0b45b8d5a..18b9332867 100644 --- a/engines/sherlock/sherlock.cpp +++ b/engines/sherlock/sherlock.cpp @@ -128,7 +128,7 @@ Common::Error SherlockEngine::run() { // If requested, load a savegame instead of showing the intro if (ConfMan.hasKey("save_slot")) { int saveSlot = ConfMan.getInt("save_slot"); - if (saveSlot >= 1 && saveSlot <= MAX_SAVEGAME_SLOTS) + if (saveSlot >= 0 && saveSlot <= MAX_SAVEGAME_SLOTS) _loadGameSlot = saveSlot; } |