From 71e4bb108a292044f71f260633e7373b239424da Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 20 Apr 2019 00:05:57 -0700 Subject: [PATCH] GLK: GLULXE: Hopeflly fix last uint vs uint32 type clash --- engines/glk/glulxe/string.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/glk/glulxe/string.cpp b/engines/glk/glulxe/string.cpp index d891a9d49ccb..4a3229bef030 100644 --- a/engines/glk/glulxe/string.cpp +++ b/engines/glk/glulxe/string.cpp @@ -85,8 +85,9 @@ void Glulxe::filio_char_han(unsigned char ch) { } void Glulxe::filio_unichar_han(uint32 val) { + uint v = val; push_callstub(0, 0); - enter_function(iosys_rock, 1, &val); + enter_function(iosys_rock, 1, &v); } void Glulxe::glkio_unichar_nouni_han(uint32 val) {