AGOS: Fix bug #5986 - AGOS: Simon1 Amiga CD32 Verb Area missing.
This commit is contained in:
parent
0a93ef16a0
commit
d48ccd357d
1 changed files with 7 additions and 0 deletions
|
@ -1303,6 +1303,13 @@ void AGOSEngine::setWindowImageEx(uint16 mode, uint16 vgaSpriteId) {
|
||||||
} else {
|
} else {
|
||||||
setWindowImage(mode, vgaSpriteId);
|
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) {
|
void AGOSEngine::setWindowImage(uint16 mode, uint16 vgaSpriteId, bool specialCase) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue