diff options
author | Paul Gilbert | 2019-10-09 19:30:50 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-10-11 18:43:34 -0700 |
commit | a14550d7f1893be72a59f3653cf9e69a43b9077a (patch) | |
tree | ca81a1bb1af5d70ebef545cb739a28e337ecc36f | |
parent | da77bfd7928f47438063e5e2d7ffffdc40e0c7d2 (diff) | |
download | scummvm-rg350-a14550d7f1893be72a59f3653cf9e69a43b9077a.tar.gz scummvm-rg350-a14550d7f1893be72a59f3653cf9e69a43b9077a.tar.bz2 scummvm-rg350-a14550d7f1893be72a59f3653cf9e69a43b9077a.zip |
GLK: Make glui32 match uint to hopefully prevent Amiga compilation errors
-rw-r--r-- | engines/glk/glk_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/glk_types.h b/engines/glk/glk_types.h index d3db3d44a3..be2ccb44b7 100644 --- a/engines/glk/glk_types.h +++ b/engines/glk/glk_types.h @@ -247,7 +247,7 @@ struct gidispatch_intconst_struct { }; typedef gidispatch_intconst_struct gidispatch_intconst_t; -typedef uint32 glui32; +typedef uint glui32; } // End of namespace Glk |