ACCESS: Fix crash when exiting game in the middle of a chapter start

This commit is contained in:
Paul Gilbert 2014-11-08 22:53:21 -05:00
parent d6963d8d09
commit 876ce794a1

View File

@ -88,7 +88,10 @@ void Room::doRoom() {
_vm->_player->walk();
_vm->_sound->midiRepeat();
_vm->_player->checkScroll();
doCommands();
if (_vm->shouldQuit())
return;
// DOROOMFLASHBACK jump point
if (_function == FN_CLEAR1) {