[Scummvm-cvs-logs] CVS: scummvm/scumm script_v72he.cpp,2.109,2.110
Travis Howell
kirben at users.sourceforge.net
Sun Sep 19 03:16:02 CEST 2004
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25377/scumm
Modified Files:
script_v72he.cpp
Log Message:
Ignore trace msgs.
Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.109
retrieving revision 2.110
diff -u -d -r2.109 -r2.110
--- script_v72he.cpp 19 Sep 2004 08:37:19 -0000 2.109
+++ script_v72he.cpp 19 Sep 2004 10:14:34 -0000 2.110
@@ -648,7 +648,8 @@
_stringLength = resStrLen(_scriptPointer) + 1;
addMessageToStack(_scriptPointer, _stringBuffer, _stringLength);
- debug(0,"o72_addMessageToStack(\"%s\")", _scriptPointer);
+ if (strcmp((char *)_stringBuffer, "no trace"))
+ debug(0,"o72_addMessageToStack(\"%s\")", _scriptPointer);
_scriptPointer += _stringLength;
}
@@ -1035,7 +1036,7 @@
break;
case 98: // SO_SHADOW
a->shadow_mode = pop();
- debug(0, "Set actor XMAP idx to %d\n", a->shadow_mode);
+ debug(0, "Set actor XMAP idx to %d", a->shadow_mode);
break;
case 99: // SO_TEXT_OFFSET
a->talkPosY = pop();
More information about the Scummvm-git-logs
mailing list