[Scummvm-cvs-logs] SF.net SVN: scummvm: [32335] scummvm/trunk/engines/cine/script_os.cpp

buddha_ at users.sourceforge.net buddha_ at users.sourceforge.net
Wed May 28 14:05:41 CEST 2008


Revision: 32335
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32335&view=rev
Author:   buddha_
Date:     2008-05-28 05:05:40 -0700 (Wed, 28 May 2008)

Log Message:
-----------
Fix Operation Stealth's opcode 0x82's parameter list (Verified with DOS version's disassembly).

Modified Paths:
--------------
    scummvm/trunk/engines/cine/script_os.cpp

Modified: scummvm/trunk/engines/cine/script_os.cpp
===================================================================
--- scummvm/trunk/engines/cine/script_os.cpp	2008-05-28 02:55:42 UTC (rev 32334)
+++ scummvm/trunk/engines/cine/script_os.cpp	2008-05-28 12:05:40 UTC (rev 32335)
@@ -202,7 +202,7 @@
 	/* 80 */
 	{ &FWScript::o2_removeSeq, "bb" },
 	{ &FWScript::o2_op81, "" }, /* TODO: Name this opcode properly. */
-	{ &FWScript::o2_op82, "bbw" }, /* TODO: Name this opcode properly. */
+	{ &FWScript::o2_op82, "bbwwb" }, /* TODO: Name this opcode properly. */
 	{ &FWScript::o2_isSeqRunning, "bb" },
 	/* 84 */
 	{ &FWScript::o2_gotoIfSupNearest, "b" },
@@ -455,7 +455,9 @@
 	byte a = getNextByte();
 	byte b = getNextByte();
 	uint16 c = getNextWord();
-	warning("STUB: o2_op82(%x, %x, %x)", a, b, c);
+	uint16 d = getNextWord();
+	byte e = getNextByte();
+	warning("STUB: o2_op82(%x, %x, %x, %x, %x)", a, b, c, d, e);
 	return 0;
 }
 


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