[Scummvm-cvs-logs] CVS: tools descumm.cpp,1.104,1.105

kirben kirben at users.sourceforge.net
Fri Sep 23 23:30:04 CEST 2005


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

Modified Files:
	descumm.cpp 
Log Message:

Fix C64 maniac script output.


Index: descumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/tools/descumm.cpp,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- descumm.cpp	24 Sep 2005 06:07:51 -0000	1.104
+++ descumm.cpp	24 Sep 2005 06:28:09 -0000	1.105
@@ -2803,27 +2803,27 @@
 
     case 0x0f:
     case 0x4f:
-		do_tok(buf, "clearState02", ((opcode & 0x80) ? A1V : A1B));
+		do_tok(buf, "clearState02", 0);
 		break;
 	case 0x37:
 	case 0x77:
-		do_tok(buf, "clearState04", ((opcode & 0x80) ? A1V : A1B));
+		do_tok(buf, "clearState04", 0);
 		break;
 	case 0x17:
 	case 0x57:
-		do_tok(buf, "clearState08", ((opcode & 0x80) ? A1V : A1B));
+		do_tok(buf, "clearState08", 0);
 		break;
     case 0x8f:
     case 0xcf:
-		do_tok(buf, "setState02", ((opcode & 0x80) ? A1V : A1B));
+		do_tok(buf, "setState02", 0);
 		break;
 	case 0xb7:
 	case 0xf7:
-		do_tok(buf, "setState04", ((opcode & 0x80) ? A1V : A1B));
+		do_tok(buf, "setState04", 0);
 		break;
 	case 0x97:
 	case 0xd7:
-		do_tok(buf, "setState08", ((opcode & 0x80) ? A1V : A1B));
+		do_tok(buf, "setState08", 0);
 		break;
 
     case 0x3f:





More information about the Scummvm-git-logs mailing list