mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-17 07:22:41 +00:00
HOPKINS: Another shouldQuit() check in PERSONAGE
This commit is contained in:
parent
e99a5c02b5
commit
c9f9527ad9
@ -5650,7 +5650,10 @@ void ObjectsManager::PERSONAGE(const Common::String &s1, const Common::String &s
|
||||
continue;
|
||||
}
|
||||
v5 = 1;
|
||||
} while (v5 != 1);
|
||||
} while (!_vm->shouldQuit() && v5 != 1);
|
||||
if (_vm->shouldQuit())
|
||||
return;
|
||||
|
||||
_vm->_graphicsManager.FADE_OUTW();
|
||||
if (!s3.empty())
|
||||
_vm->_graphicsManager.FIN_VISU();
|
||||
|
Loading…
x
Reference in New Issue
Block a user