ENGINES: Merge saveGameState virtual methods into a single one

This commit is contained in:
Paul Gilbert 2020-02-04 22:13:33 -08:00 committed by Paul Gilbert
parent 1bc068decd
commit a00e44ba6c
123 changed files with 127 additions and 140 deletions

View file

@ -216,7 +216,7 @@ Common::Error LabEngine::loadGameState(int slot) {
return (result) ? Common::kNoError : Common::kUserCanceled;
}
Common::Error LabEngine::saveGameState(int slot, const Common::String &desc) {
Common::Error LabEngine::saveGameState(int slot, const Common::String &desc, bool isAutosave) {
bool result = saveGame(slot, desc);
return (result) ? Common::kNoError : Common::kUserCanceled;
}