aboutsummaryrefslogtreecommitdiff
path: root/engines/glk
diff options
context:
space:
mode:
authorPaul Gilbert2019-04-20 00:05:57 -0700
committerPaul Gilbert2019-04-20 00:05:57 -0700
commit71e4bb108a292044f71f260633e7373b239424da (patch)
tree653937d04b77e19cebfcbd39efe433beec8b8b8b /engines/glk
parentd0edb79a101427c57689dc84eb3875aed0eed29e (diff)
downloadscummvm-rg350-71e4bb108a292044f71f260633e7373b239424da.tar.gz
scummvm-rg350-71e4bb108a292044f71f260633e7373b239424da.tar.bz2
scummvm-rg350-71e4bb108a292044f71f260633e7373b239424da.zip
GLK: GLULXE: Hopeflly fix last uint vs uint32 type clash
Diffstat (limited to 'engines/glk')
-rw-r--r--engines/glk/glulxe/string.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/glulxe/string.cpp b/engines/glk/glulxe/string.cpp
index d891a9d49c..4a3229bef0 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) {