mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-06 02:10:28 +00:00
Fixed GMM save/load functionallity in kyra1.
svn-id: r35980
This commit is contained in:
parent
ceefbd19b9
commit
d3fb5c1ecc
engines/kyra
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user