AGOS: Fix bug #5986 - AGOS: Simon1 Amiga CD32 Verb Area missing.

This commit is contained in:
Kirben 2015-06-30 20:43:10 +10:00
parent 0a93ef16a0
commit d48ccd357d

View file

@ -1303,6 +1303,13 @@ void AGOSEngine::setWindowImageEx(uint16 mode, uint16 vgaSpriteId) {
} else {
setWindowImage(mode, vgaSpriteId);
}
// Amiga versions wait for verb area to be displayed.
if (getGameType() == GType_SIMON1 && getPlatform() == Common::kPlatformAmiga && vgaSpriteId == 1) {
_copyScnFlag = 5;
while (_copyScnFlag && !shouldQuit())
delay(1);
}
}
void AGOSEngine::setWindowImage(uint16 mode, uint16 vgaSpriteId, bool specialCase) {