HOPKINS: Another shouldQuit() check in PERSONAGE

This commit is contained in:
Paul Gilbert 2012-10-29 00:05:56 +11:00
parent e99a5c02b5
commit c9f9527ad9

View File

@ -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();