[Scummvm-cvs-logs] CVS: scummvm/saga sfuncs.cpp,1.85,1.86

Max Horn fingolfin at users.sourceforge.net
Sun Jan 23 06:32:03 CET 2005


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

Modified Files:
	sfuncs.cpp 
Log Message:
Fix warnings

Index: sfuncs.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/sfuncs.cpp,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- sfuncs.cpp	22 Jan 2005 21:40:54 -0000	1.85
+++ sfuncs.cpp	23 Jan 2005 14:30:59 -0000	1.86
@@ -410,12 +410,15 @@
 	}
 }
 
-static struct SceneSubstitutes {
+struct SceneSubstitutes {
     int sceneId;
     const char *message;
     const char *name;
     const char *image;
-} sceneSubstitutes[] = {
+};
+
+/*
+static SceneSubstitutes sceneSubstitutes[] = {
     { 
 		7,
 		"Tycho says he knows much about the northern lands. Can Rif convince "
@@ -463,6 +466,7 @@
 		"boarhall.bbm"
 	}
 };
+*/
 
 // Script function #16 (0x10)
 void Script::sfScriptGotoScene(SCRIPTFUNC_PARAMS) {





More information about the Scummvm-git-logs mailing list