Skip to content

Commit

Permalink
XEEN: Fix saving to slot 0 using in-game Control Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Mar 13, 2018
1 parent ac7a922 commit 0ea2321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/xeen/saves.cpp
Expand Up @@ -267,7 +267,7 @@ bool SavesManager::saveGame() {
Common::String saveName = dialog->getResultString();
delete dialog;

if (slotNum)
if (slotNum != -1)
saveGameState(slotNum, saveName);

return slotNum != -1;
Expand Down

0 comments on commit 0ea2321

Please sign in to comment.