sword1: disable saving/loading through GMM when in game menu

svn-id: r39122
This commit is contained in:
Fabio Battaglia 2009-03-04 10:39:12 +00:00
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