XEEN: Fix saving to slot 0 using in-game Control Panel

This commit is contained in:
Paul Gilbert 2018-03-13 19:04:08 -04:00
parent ac7a9224fe
commit 0ea2321e76

View File

@ -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;