aboutsummaryrefslogtreecommitdiff
path: root/engines/glk
diff options
context:
space:
mode:
authorPaul Gilbert2019-09-26 18:06:26 -0700
committerPaul Gilbert2019-09-26 18:06:32 -0700
commit70942301411a5f998bedde85f261a0b3113fc467 (patch)
tree0e6dab189beaabbe8c151b37eb0c6ba27f4cccf2 /engines/glk
parentd2452ecf95d5be8e960635f1c833d6664322fc88 (diff)
downloadscummvm-rg350-70942301411a5f998bedde85f261a0b3113fc467.tar.gz
scummvm-rg350-70942301411a5f998bedde85f261a0b3113fc467.tar.bz2
scummvm-rg350-70942301411a5f998bedde85f261a0b3113fc467.zip
GLK: ADRIFT: Fix unsigned type mismatch
Diffstat (limited to 'engines/glk')
-rw-r--r--engines/glk/adrift/os_glk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/adrift/os_glk.cpp b/engines/glk/adrift/os_glk.cpp
index dce48f81c6..d45a35771d 100644
--- a/engines/glk/adrift/os_glk.cpp
+++ b/engines/glk/adrift/os_glk.cpp
@@ -827,7 +827,7 @@ static sc_bool gsc_is_string_usable(const sc_char *string) {
* Glk libraries.
*/
static void gsc_status_update() {
- glui32 width, height;
+ uint width, height;
uint index;
assert(gsc_status_window);