aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-05-01 09:37:12 +0000
committerTorbjörn Andersson2004-05-01 09:37:12 +0000
commit4265979a6a626c60b4b97657ba42c074b5c5fbd1 (patch)
tree61f7f0c85b004f9fcb1f8cea32406b50d1401348 /saga
parent5f5e6e42798a1e55be6c82a97c5caced8567de9d (diff)
downloadscummvm-rg350-4265979a6a626c60b4b97657ba42c074b5c5fbd1.tar.gz
scummvm-rg350-4265979a6a626c60b4b97657ba42c074b5c5fbd1.tar.bz2
scummvm-rg350-4265979a6a626c60b4b97657ba42c074b5c5fbd1.zip
Fixed warnings
svn-id: r13700
Diffstat (limited to 'saga')
-rw-r--r--saga/scene.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/saga/scene.cpp b/saga/scene.cpp
index a675d0b9ad..e2c9aa6f05 100644
--- a/saga/scene.cpp
+++ b/saga/scene.cpp
@@ -114,7 +114,7 @@ int SCENE_Init(void)
/* 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 @@ SCENE_Load(int scene_num,
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 @@ int ProcessSceneResources(void)
&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;