[Scummvm-cvs-logs] CVS: tools descumm.cpp,1.108,1.109

Torbjörn Andersson eriktorbjorn at users.sourceforge.net
Wed Oct 12 23:50:44 CEST 2005


Update of /cvsroot/scummvm/tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32068

Modified Files:
	descumm.cpp 
Log Message:
Fixed disassembly of loadFlObject() for v5. Needed to descumm script-99 in
Monkey Island 2, for instance.


Index: descumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/tools/descumm.cpp,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- descumm.cpp	2 Oct 2005 13:33:37 -0000	1.108
+++ descumm.cpp	13 Oct 2005 06:49:37 -0000	1.109
@@ -1116,7 +1116,7 @@
 		do_tok(buf, "nukeCharset", ((opcode & 0x80) ? A1V : A1B));
 		break;
 	case 0x14:
-		do_tok(buf, "loadFlObject", ((opcode & 0x80) ? A1V : A1B) | ((opcode & 0x40) ? A2V : A2B));
+		do_tok(buf, "loadFlObject", ((opcode & 0x80) ? A1V : A1B) | ((opcode & 0x40) ? A2V : A2W));
 		break;
 
 	case 0x22 + 1:





More information about the Scummvm-git-logs mailing list