[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.437,2.438 script_v100he.cpp,2.121,2.122

kirben kirben at users.sourceforge.net
Mon Apr 11 19:36:31 CEST 2005


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

Modified Files:
	intern.h script_v100he.cpp 
Log Message:

Sync.


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.437
retrieving revision 2.438
diff -u -d -r2.437 -r2.438
--- intern.h	12 Apr 2005 02:29:49 -0000	2.437
+++ intern.h	12 Apr 2005 02:35:58 -0000	2.438
@@ -872,7 +872,7 @@
 
 	void loadImgSpot(int resId, int state, int16 &x, int16 &y);
 	void loadWizCursor(int resId);
-	void unknownE0(int x1, int y1, int x, int cycles, int arg_10, int type, int resNum);
+	void unknownE0(int x1, int y1, int x, int unk1, int unk2, int type, int id);
 	void unknownE0Helper(int x, int y, int flags);
 	
 	/* HE version 80 script opcodes */

Index: script_v100he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v100he.cpp,v
retrieving revision 2.121
retrieving revision 2.122
diff -u -d -r2.121 -r2.122
--- script_v100he.cpp	12 Apr 2005 02:29:49 -0000	2.121
+++ script_v100he.cpp	12 Apr 2005 02:35:59 -0000	2.122
@@ -417,23 +417,7 @@
 		a->_needBgReset = true;
 		break;
 	case 9:		
-		{
-			int top_actor = a->_top;
-			int bottom_actor = a->_bottom;
-			a->_drawToBackBuf = true;
-			a->_needRedraw = true;
-			a->drawActorCostume();
-			a->_drawToBackBuf = false;
-			a->_needRedraw = true;
-			a->drawActorCostume();
-			a->_needRedraw = false;
-
-			if (a->_top > top_actor)
-				a->_top = top_actor;
-			if (a->_bottom < bottom_actor)
-				a->_bottom = bottom_actor;
-
-		}
+		a->drawActorToBackBuf(a->_pos.x, a->_pos.y);
 		break;
 	case 14:
 		a->_charset = pop();





More information about the Scummvm-git-logs mailing list