aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirben2015-06-30 20:43:10 +1000
committerKirben2015-06-30 20:43:10 +1000
commitd48ccd357db2ee49f67c6b621352077b12f5eeeb (patch)
tree0c88c48311c49a21a6fe4812d052acebf35f9718
parent0a93ef16a01555a18287b88ee188aabfa251de28 (diff)
downloadscummvm-rg350-d48ccd357db2ee49f67c6b621352077b12f5eeeb.tar.gz
scummvm-rg350-d48ccd357db2ee49f67c6b621352077b12f5eeeb.tar.bz2
scummvm-rg350-d48ccd357db2ee49f67c6b621352077b12f5eeeb.zip
AGOS: Fix bug #5986 - AGOS: Simon1 Amiga CD32 Verb Area missing.
-rw-r--r--engines/agos/gfx.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/agos/gfx.cpp b/engines/agos/gfx.cpp
index 5a1f9f1917..687463fc23 100644
--- a/engines/agos/gfx.cpp
+++ b/engines/agos/gfx.cpp
@@ -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) {