diff options
-rw-r--r-- | engines/sci/detection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp index e3167503ee..a3b15b23e0 100644 --- a/engines/sci/detection.cpp +++ b/engines/sci/detection.cpp @@ -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 |