Fixed GMM save/load functionallity in kyra1.

svn-id: r35980
This commit is contained in:
Johannes Schickel 2009-01-21 15:36:31 +00:00
parent ceefbd19b9
commit d3fb5c1ecc
2 changed files with 3 additions and 4 deletions

@ -476,7 +476,9 @@ void KyraEngine_LoK::delay(uint32 amount, bool update, bool isMainLoop) {
updateMousePointer();
}
_isSaveAllowed = isMainLoop;
updateInput();
_isSaveAllowed = false;
if (_currentCharacter && _currentCharacter->sceneId == 210 && update)
updateKyragemFading();

@ -226,11 +226,8 @@ void KyraEngine_v1::setMousePos(int x, int y) {
int KyraEngine_v1::checkInput(Button *buttonList, bool mainLoop) {
debugC(9, kDebugLevelMain, "KyraEngine_v1::checkInput(%p, %d)", (const void*)buttonList, mainLoop);
if (mainLoop)
_isSaveAllowed = true;
_isSaveAllowed = mainLoop;
updateInput();
_isSaveAllowed = false;
int keys = 0;