aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/glk_interface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-09 14:46:57 -0800
committerPaul Gilbert2018-12-09 14:47:15 -0800
commite232d024c5e20436fa64c25bfb506d8e2ece9a50 (patch)
tree4d6b80b950dd6298b3a4c65a61ad29a4128d6346 /engines/glk/frotz/glk_interface.cpp
parentfc8b55578b7a88fe1a9d2523e5b71b185532a8a9 (diff)
downloadscummvm-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/glk_interface.cpp')
-rw-r--r--engines/glk/frotz/glk_interface.cpp2
1 files changed, 1 insertions, 1 deletions
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;