diff options
author | Paul Gilbert | 2018-12-09 14:46:57 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-09 14:47:15 -0800 |
commit | e232d024c5e20436fa64c25bfb506d8e2ece9a50 (patch) | |
tree | 4d6b80b950dd6298b3a4c65a61ad29a4128d6346 /engines/glk/frotz | |
parent | fc8b55578b7a88fe1a9d2523e5b71b185532a8a9 (diff) | |
download | scummvm-rg350-e232d024c5e20436fa64c25bfb506d8e2ece9a50.tar.gz scummvm-rg350-e232d024c5e20436fa64c25bfb506d8e2ece9a50.tar.bz2 scummvm-rg350-e232d024c5e20436fa64c25bfb506d8e2ece9a50.zip |
GLK: Standardizing uint vs uint32 usage
Diffstat (limited to 'engines/glk/frotz')
-rw-r--r-- | engines/glk/frotz/frotz_types.h | 2 | ||||
-rw-r--r-- | engines/glk/frotz/glk_interface.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/frotz/frotz_types.h b/engines/glk/frotz/frotz_types.h index 555a204571..e758f7e49e 100644 --- a/engines/glk/frotz/frotz_types.h +++ b/engines/glk/frotz/frotz_types.h @@ -202,7 +202,7 @@ enum FontStyle { #define MENU_REMOVE 2 typedef byte zbyte; -typedef uint zchar; +typedef uint32 zchar; typedef uint16 zword; #define MAX_NESTING 16 diff --git a/engines/glk/frotz/glk_interface.cpp b/engines/glk/frotz/glk_interface.cpp index c6e0ca4d1a..200adbb9fe 100644 --- a/engines/glk/frotz/glk_interface.cpp +++ b/engines/glk/frotz/glk_interface.cpp @@ -425,7 +425,7 @@ void GlkInterface::packspaces(zchar *src, zchar *dst) { void GlkInterface::smartstatusline() { zchar packed[256]; - uint buf[256]; + uint32 buf[256]; zchar *a, *b, *c, *d; int roomlen, scorelen, scoreofs; int len, tmp; |