Skip to content

Commit

Permalink
GLK: GLULXE: Hopeflly fix last uint vs uint32 type clash
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Apr 20, 2019
1 parent d0edb79 commit 71e4bb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/glk/glulxe/string.cpp
Expand Up @@ -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) {
Expand Down

0 comments on commit 71e4bb1

Please sign in to comment.