[Scummvm-git-logs] scummvm master -> 910e5204acadb9c5995a1489553bed08b013b672

dreammaster paulfgilbert at gmail.com
Thu Apr 18 16:43:06 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:
910e5204ac GLK: GLULXE: Fix type difference of uint32 vs unit


Commit: 910e5204acadb9c5995a1489553bed08b013b672
    https://github.com/scummvm/scummvm/commit/910e5204acadb9c5995a1489553bed08b013b672
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-04-18T07:42:59-07:00

Commit Message:
GLK: GLULXE: Fix type difference of uint32 vs unit

Changed paths:
    engines/glk/glk_types.h


diff --git a/engines/glk/glk_types.h b/engines/glk/glk_types.h
index 84d3e15..67a6eef 100644
--- a/engines/glk/glk_types.h
+++ b/engines/glk/glk_types.h
@@ -231,9 +231,9 @@ union gluniversal_union {
 	int8 _sch;           ///< Cs
 	char _ch;            ///< Cn
 	char *_charstr;		 ///< S
-	uint32 *_unicharstr; ///< U
+	uint *_unicharstr;   ///< U
 	void *_array;        ///< all # arguments
-	uint32 _ptrflag;     ///< [ ... ] or *?
+	uint _ptrflag;       ///< [ ... ] or *?
 };
 typedef gluniversal_union gluniversal_t;
 





More information about the Scummvm-git-logs mailing list