[Scummvm-cvs-logs] CVS: scummvm/saga script.h,1.39,1.40 sfuncs.cpp,1.59,1.60

Torbjörn Andersson eriktorbjorn at users.sourceforge.net
Thu Dec 30 06:55:07 CET 2004


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

Modified Files:
	script.h sfuncs.cpp 
Log Message:
Renamed the "placard" opcode functions. They should be reasonably bug free
now.


Index: script.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/script.h,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- script.h	29 Dec 2004 21:49:25 -0000	1.39
+++ script.h	30 Dec 2004 14:54:39 -0000	1.40
@@ -353,8 +353,8 @@
 	int SF_walkRelative(SCRIPTFUNC_PARAMS);
 	int SF_moveRelative(SCRIPTFUNC_PARAMS);
 	int SF_simulSpeech2(SCRIPTFUNC_PARAMS);
-	int SF_placard(SCRIPTFUNC_PARAMS);
-	int SF_placardOff(SCRIPTFUNC_PARAMS);
+	int sfPlacard(SCRIPTFUNC_PARAMS);
+	int sfPlacardOff(SCRIPTFUNC_PARAMS);
 	int SF_setProtagState(SCRIPTFUNC_PARAMS);
 	int sfResumeBgdAnim(SCRIPTFUNC_PARAMS);
 	int SF_throwActor(SCRIPTFUNC_PARAMS);

Index: sfuncs.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/sfuncs.cpp,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- sfuncs.cpp	29 Dec 2004 21:49:25 -0000	1.59
+++ sfuncs.cpp	30 Dec 2004 14:54:40 -0000	1.60
@@ -95,8 +95,8 @@
 		OPCODE(SF_walkRelative),
 		OPCODE(SF_moveRelative),
 		OPCODE(SF_simulSpeech2),
-		OPCODE(SF_placard),
-		OPCODE(SF_placardOff),
+		OPCODE(sfPlacard),
+		OPCODE(sfPlacardOff),
 		OPCODE(SF_setProtagState),
 		OPCODE(sfResumeBgdAnim),
 		OPCODE(SF_throwActor),
@@ -921,7 +921,7 @@
 }
 
 // Script function #48 (0x30)
-int Script::SF_placard(SCRIPTFUNC_PARAMS) {
+int Script::sfPlacard(SCRIPTFUNC_PARAMS) {
 	GAME_DISPLAYINFO disp_info;
 	SURFACE *back_buf = _vm->_gfx->getBackBuffer();
 	PALENTRY cur_pal[PAL_ENTRIES];
@@ -955,7 +955,7 @@
 }
 
 // Script function #49 (0x31)
-int Script::SF_placardOff(SCRIPTFUNC_PARAMS) {
+int Script::sfPlacardOff(SCRIPTFUNC_PARAMS) {
 	SURFACE *back_buf = _vm->_gfx->getBackBuffer();
 	PALENTRY cur_pal[PAL_ENTRIES];
 	PALENTRY *pal;





More information about the Scummvm-git-logs mailing list