SCI: Clarify the SciEngine::canSaveGameStateCurrently situation

This commit is contained in:
Colin Snover 2016-12-18 18:22:37 -06:00
parent df38f24c77
commit 8bda50fb08

View File

@ -887,7 +887,8 @@ bool SciEngine::canLoadGameStateCurrently() {
}
bool SciEngine::canSaveGameStateCurrently() {
return !_gamestate->executionStackBase;
// see comment about kSupportsSavingDuringRuntime in SciEngine::hasFeature
return false;
}
} // End of namespace Sci