Patch from bug #2710315: INDY3/FOA: bug in patch for series IQ with ScummVM GUI

svn-id: r39677
This commit is contained in:
Max Horn 2009-03-24 23:30:48 +00:00
parent 51751cd069
commit ee42d06a43
2 changed files with 12 additions and 7 deletions

View file

@ -2083,7 +2083,8 @@ void ScummEngine::scummLoop_handleSaveLoad() {
}
void ScummEngine_v5::scummLoop_handleSaveLoad() {
byte saveLoad = (_saveLoadFlag != 0);
// copy saveLoadFlag as handleSaveLoad() resets it
byte saveLoad = _saveLoadFlag;
ScummEngine::scummLoop_handleSaveLoad();