aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/level9/level9_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/level9/level9_main.cpp')
-rw-r--r--engines/glk/level9/level9_main.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/glk/level9/level9_main.cpp b/engines/glk/level9/level9_main.cpp
index bbaad57a40..3cc027e2ea 100644
--- a/engines/glk/level9/level9_main.cpp
+++ b/engines/glk/level9/level9_main.cpp
@@ -78,7 +78,7 @@ enum L9GfxTypes { GFX_V2, GFX_V3A, GFX_V3B, GFX_V3C };
/* Global Variables */
L9BYTE *startfile, *pictureaddress, *picturedata;
byte *startdata;
-size_t FileSize, picturesize;
+uint32 FileSize, picturesize;
byte *L9Pointers[12];
byte *absdatablock, *list2ptr, *list3ptr, *list9startptr, *acodeptr;
@@ -1808,6 +1808,10 @@ L9BOOL corruptinginput() {
} while (TRUE);
/* ip22 */
checknumber();
+
+ // Unused variables
+ (void)keywordnumber;
+
return TRUE;
}