XEEN: Fix memory leak loading savegames

This commit is contained in:
Paul Gilbert 2018-02-12 21:24:10 -05:00
parent 519f52a635
commit 565719f3fa

View File

@ -216,6 +216,7 @@ Common::Error SavesManager::loadGameState(int slot) {
map._loadDarkSide = files._isDarkCc;
map.load(party._mazeId);
delete saveFile;
return Common::kNoError;
}