mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
CGE: Don't allow saving game during cut-scenes
This commit is contained in:
parent
c58af59ae4
commit
b1c10ef2f0
@ -214,7 +214,8 @@ bool CGEEngine::canLoadGameStateCurrently() {
|
||||
}
|
||||
|
||||
bool CGEEngine::canSaveGameStateCurrently() {
|
||||
return (_startupMode == 0) && _mouse->_active;
|
||||
return (_startupMode == 0) && _mouse->_active &&
|
||||
_commandHandler->idle() && !_hero->_flags._hide;
|
||||
}
|
||||
|
||||
} // End of namespace CGE
|
||||
|
Loading…
Reference in New Issue
Block a user