diff options
author | Paul Gilbert | 2018-12-09 11:04:51 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-09 11:04:51 -0800 |
commit | cdfb61dd99a4c75a0490605831d4f8a06a0dccbe (patch) | |
tree | 1247557739e83f5845df534736e1e7a77d45b6e3 /engines | |
parent | 13b4225e06a2caf5e56ebf4fd4728b07cf1f5a1b (diff) | |
download | scummvm-rg350-cdfb61dd99a4c75a0490605831d4f8a06a0dccbe.tar.gz scummvm-rg350-cdfb61dd99a4c75a0490605831d4f8a06a0dccbe.tar.bz2 scummvm-rg350-cdfb61dd99a4c75a0490605831d4f8a06a0dccbe.zip |
GLK: Hopefully finally fix Amiga compilation
Diffstat (limited to 'engines')
-rw-r--r-- | engines/glk/frotz/glk_interface.cpp | 6 | ||||
-rw-r--r-- | engines/glk/glk_types.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engines/glk/frotz/glk_interface.cpp b/engines/glk/frotz/glk_interface.cpp index 79907cbc84..7c8f490fce 100644 --- a/engines/glk/frotz/glk_interface.cpp +++ b/engines/glk/frotz/glk_interface.cpp @@ -49,7 +49,7 @@ GlkInterface::~GlkInterface() { } void GlkInterface::initialize() { - uint width, height; + glui32 width, height; /* * Init glk stuff @@ -425,7 +425,7 @@ void GlkInterface::packspaces(zchar *src, zchar *dst) { void GlkInterface::smartstatusline() { zchar packed[256]; - zchar buf[256]; + glui32 buf[256]; zchar *a, *b, *c, *d; int roomlen, scorelen, scoreofs; int len, tmp; @@ -478,7 +478,7 @@ void GlkInterface::gos_cancel_pending_line() { } void GlkInterface::showBeyondZorkTitle() { - uint winW, winH, imgW, imgH; + glui32 winW, winH, imgW, imgH; winid_t win = glk_window_open(0, 0, 0, wintype_Graphics, 0); glk_window_get_size(win, &winW, &winH); diff --git a/engines/glk/glk_types.h b/engines/glk/glk_types.h index 3c8f60f9d6..3a51b96887 100644 --- a/engines/glk/glk_types.h +++ b/engines/glk/glk_types.h @@ -28,8 +28,8 @@ namespace Glk { -typedef uint32 glui32; -typedef int32 glsi32; +typedef uint glui32; +typedef int glsi32; class Window; /** |