mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-05 00:01:55 +00:00
sword1: disable saving/loading through GMM when in game menu
svn-id: r39122
This commit is contained in:
parent
928a276c04
commit
f6028bc822
@ -326,7 +326,7 @@ Common::Error SwordEngine::loadGameState(int slot) {
|
||||
}
|
||||
|
||||
bool SwordEngine::canLoadGameStateCurrently() {
|
||||
return mouseIsActive();
|
||||
return (mouseIsActive() && !_control->isPanelShown()); // Disable GMM loading when game panel is shown
|
||||
}
|
||||
|
||||
Common::Error SwordEngine::saveGameState(int slot, const char *desc) {
|
||||
@ -336,7 +336,7 @@ Common::Error SwordEngine::saveGameState(int slot, const char *desc) {
|
||||
}
|
||||
|
||||
bool SwordEngine::canSaveGameStateCurrently() {
|
||||
return mouseIsActive();
|
||||
return (mouseIsActive() && !_control->isPanelShown());
|
||||
}
|
||||
|
||||
} // End of namespace Sword1
|
||||
|
Loading…
x
Reference in New Issue
Block a user