[Scummvm-git-logs] scummvm master -> 71e4bb108a292044f71f260633e7373b239424da

dreammaster paulfgilbert at gmail.com
Sat Apr 20 09:09:07 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
71e4bb108a GLK: GLULXE: Hopeflly fix last uint vs uint32 type clash


Commit: 71e4bb108a292044f71f260633e7373b239424da
    https://github.com/scummvm/scummvm/commit/71e4bb108a292044f71f260633e7373b239424da
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-04-20T00:05:57-07:00

Commit Message:
GLK: GLULXE: Hopeflly fix last uint vs uint32 type clash

Changed paths:
    engines/glk/glulxe/string.cpp


diff --git a/engines/glk/glulxe/string.cpp b/engines/glk/glulxe/string.cpp
index d891a9d..4a3229b 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) {





More information about the Scummvm-git-logs mailing list