diff options
author | Kari Salminen | 2007-10-31 03:14:12 +0000 |
---|---|---|
committer | Kari Salminen | 2007-10-31 03:14:12 +0000 |
commit | ff55553c728d4f42c2a84ce74a1c25e7a8acb06d (patch) | |
tree | 4ebccae24d36b8ac78ac3b4a8e4a0d72fdda8d0d /engines | |
parent | 53ee37ada5b7e3b833ae806c619bdb026cafcd12 (diff) | |
download | scummvm-rg350-ff55553c728d4f42c2a84ce74a1c25e7a8acb06d.tar.gz scummvm-rg350-ff55553c728d4f42c2a84ce74a1c25e7a8acb06d.tar.bz2 scummvm-rg350-ff55553c728d4f42c2a84ce74a1c25e7a8acb06d.zip |
Fix for bug #1745950 (GR: Birds stuck in opening screen (Amiga version)).
svn-id: r29335
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agi/op_test.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/agi/op_test.cpp b/engines/agi/op_test.cpp index 6c33133210..fe7464bcdc 100644 --- a/engines/agi/op_test.cpp +++ b/engines/agi/op_test.cpp @@ -335,6 +335,13 @@ int AgiEngine::testIfCode(int lognum) { case 0x12: ec = testObjRight(p[0], p[1], p[2], p[3], p[4]); break; + case 0x13: // Unknown test command 19 + // Used at least by the Amiga version of Gold Rush! in logic.001. + // Don't know what this actually does in the Amiga executable but + // evaluating this to false seems to fix the bug #1745950 + // (GR: Birds stuck in opening screen (Amiga version)). + ec = false; + break; default: ec = false; end_test = true; |