[Scummvm-cvs-logs] CVS: scummvm/saga scene.cpp,1.4,1.5

Torbj?rn Andersson eriktorbjorn at users.sourceforge.net
Sat May 1 02:38:05 CEST 2004


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

Modified Files:
	scene.cpp 
Log Message:
Fixed warnings


Index: scene.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/scene.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- scene.cpp	30 Apr 2004 23:02:23 -0000	1.4
+++ scene.cpp	1 May 2004 09:37:12 -0000	1.5
@@ -114,7 +114,7 @@
 	/* Load scene lookup table
 	 * \*------------------------------------------------------------ */
 	R_printf(R_STDOUT,
-	    "SCENE_Init(): Loading scene LUT from resource %ld.\n",
+	    "SCENE_Init(): Loading scene LUT from resource %u.\n",
 	    gs_desc.scene_lut_rn);
 
 	result = RSC_LoadResource(SceneModule.scene_ctxt,
@@ -575,7 +575,7 @@
 		SceneModule.scene_rn = res_number;
 		assert(SceneModule.scene_rn != 0);
 
-		R_printf(R_STDOUT, "Loading scene resource %ld:\n", res_number);
+		R_printf(R_STDOUT, "Loading scene resource %u:\n", res_number);
 
 		if (LoadSceneDescriptor(res_number) != R_SUCCESS) {
 			R_printf(R_STDERR,
@@ -802,7 +802,7 @@
 				&SceneModule.bg.w,
 				&SceneModule.bg.h) != R_SUCCESS) {
 				R_printf(R_STDERR,
-				    "Error loading background resource: %lu\n",
+				    "Error loading background resource: %u\n",
 				    SceneModule.reslist[i].res_number);
 
 				return R_FAILURE;





More information about the Scummvm-git-logs mailing list