aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorSven Hesse2007-11-04 13:03:40 +0000
committerSven Hesse2007-11-04 13:03:40 +0000
commit64f88225e124a8841bc03356d2117120b87d7de4 (patch)
treeba3f625d0bdc9047a02b4054c37b997bd23233b5 /engines
parent906a423fa7767c5100a1269cc90231840eb5e728 (diff)
downloadscummvm-rg350-64f88225e124a8841bc03356d2117120b87d7de4.tar.gz
scummvm-rg350-64f88225e124a8841bc03356d2117120b87d7de4.tar.bz2
scummvm-rg350-64f88225e124a8841bc03356d2117120b87d7de4.zip
Muting the compiler
svn-id: r29410
Diffstat (limited to 'engines')
-rw-r--r--engines/cruise/function.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp
index 5e12c9bc6a..bf735b4d94 100644
--- a/engines/cruise/function.cpp
+++ b/engines/cruise/function.cpp
@@ -247,16 +247,18 @@ int16 Op_freeBackgroundInscrustList(void) {
int16 Op_removeBackground(void) {
int backgroundIdx = popVar();
- int ovl = popVar();
+ int ovl;
+ ovl = popVar();
printf("Op_removeBackground: remove background %d\n", backgroundIdx);
return (0);
}
int16 Op_UnmergeBackgroundIncrust(void) {
int backgroundIdx = popVar();
- int ovl = popVar();
+ int ovl;
+ ovl = popVar();
printf("Op_UnmergeBackgroundIncrust: unmerge background %d\n", backgroundIdx);
return (0);
}
@@ -1449,9 +1451,11 @@ int16 Op_songExist(void) {
}
int16 Op_SetNodeColor(void) {
- int16 color = popVar();
- int16 node = popVar();
+ int16 color;
+ int16 node;
+ color = popVar();
+ node = popVar();
printf("Unimplemented \"Op_SetNodeColor\"\n");
return 0;