[Scummvm-cvs-logs] SF.net SVN: scummvm: [29335] scummvm/trunk/engines/agi/op_test.cpp
buddha_ at users.sourceforge.net
buddha_ at users.sourceforge.net
Wed Oct 31 04:14:12 CET 2007
Revision: 29335
http://scummvm.svn.sourceforge.net/scummvm/?rev=29335&view=rev
Author: buddha_
Date: 2007-10-30 20:14:12 -0700 (Tue, 30 Oct 2007)
Log Message:
-----------
Fix for bug #1745950 (GR: Birds stuck in opening screen (Amiga version)).
Modified Paths:
--------------
scummvm/trunk/engines/agi/op_test.cpp
Modified: scummvm/trunk/engines/agi/op_test.cpp
===================================================================
--- scummvm/trunk/engines/agi/op_test.cpp 2007-10-30 23:08:18 UTC (rev 29334)
+++ scummvm/trunk/engines/agi/op_test.cpp 2007-10-31 03:14:12 UTC (rev 29335)
@@ -335,6 +335,13 @@
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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list