diff options
author | D G Turner | 2019-11-23 13:09:01 +0000 |
---|---|---|
committer | D G Turner | 2019-11-23 13:09:01 +0000 |
commit | d4cc24854d90bf0e469024c5f37d380e2242b924 (patch) | |
tree | d17255456da9caebeafbcdc5fee9ce30f5bed4d8 /engines/glk | |
parent | a33fdd93ec2c0ba725ed5443a437a2495fa6947e (diff) | |
download | scummvm-rg350-d4cc24854d90bf0e469024c5f37d380e2242b924.tar.gz scummvm-rg350-d4cc24854d90bf0e469024c5f37d380e2242b924.tar.bz2 scummvm-rg350-d4cc24854d90bf0e469024c5f37d380e2242b924.zip |
GLK: MAGNETIC: Even Further Fixes for AmigaOS4 Compilation
Diffstat (limited to 'engines/glk')
-rw-r--r-- | engines/glk/magnetic/glk.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/magnetic/glk.cpp b/engines/glk/magnetic/glk.cpp index 725f5fd4e6..3ab3fdb5e0 100644 --- a/engines/glk/magnetic/glk.cpp +++ b/engines/glk/magnetic/glk.cpp @@ -619,7 +619,8 @@ gms_gammaref_t Magnetic::gms_graphics_select_gamma(type8 bitmap[], void Magnetic::gms_graphics_clear_and_border(winid_t glk_window, int x_offset, int y_offset, int pixel_size, type16 width, type16 height) { - glui32 background, fade_color, shading_color; + uint background; + glui32 fade_color, shading_color; gms_rgb_t rgb_background, rgb_border, rgb_fade; int index; assert(glk_window); |