diff options
Diffstat (limited to 'engines/cge/cge.cpp')
-rw-r--r-- | engines/cge/cge.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/cge/cge.cpp b/engines/cge/cge.cpp index 87654c53f4..8e74253f86 100644 --- a/engines/cge/cge.cpp +++ b/engines/cge/cge.cpp @@ -208,7 +208,8 @@ bool CGEEngine::hasFeature(EngineFeature f) const { } bool CGEEngine::canLoadGameStateCurrently() { - return (_startupMode == 0) && _mouse->_active; + return (_startupMode == 0) && _mouse->_active && + _commandHandler->idle() && !_hero->_flags._hide; } bool CGEEngine::canSaveGameStateCurrently() { |