[Scummvm-cvs-logs] CVS: scummvm/scumm script_v100he.cpp,2.134,2.135 script_v72he.cpp,2.268,2.269
kirben
kirben at users.sourceforge.net
Wed Apr 20 22:14:40 CEST 2005
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17963/scumm
Modified Files:
script_v100he.cpp script_v72he.cpp
Log Message:
Correct argument order.
Fixes glitches in freddi4/spyozon.
Index: script_v100he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v100he.cpp,v
retrieving revision 2.134
retrieving revision 2.135
diff -u -d -r2.134 -r2.135
--- script_v100he.cpp 20 Apr 2005 06:55:29 -0000 2.134
+++ script_v100he.cpp 21 Apr 2005 05:14:19 -0000 2.135
@@ -407,8 +407,8 @@
a->setAnimSpeed(pop());
break;
case 6:
- i = pop();
j = pop();
+ i = pop();
a->putActor(i, j, a->_room);
break;
case 8:
Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.268
retrieving revision 2.269
diff -u -d -r2.268 -r2.269
--- script_v72he.cpp 20 Apr 2005 03:12:53 -0000 2.268
+++ script_v72he.cpp 21 Apr 2005 05:14:19 -0000 2.269
@@ -1128,8 +1128,8 @@
a->_clipOverride.left = pop();
break;
case 65: // HE 98+
- i = pop();
j = pop();
+ i = pop();
a->putActor(i, j, a->_room);
break;
case 68: // HE 90+
More information about the Scummvm-git-logs
mailing list