From 7637edb5a2e84c0abbf1c1aa156772ce1f7906c3 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 9 Dec 2018 11:36:20 -0800 Subject: GLK: Change all references to glui32 and glsi32 to uint and int This should finally fix compilation for the Amiga, which had difference sized types. And the renamed types are clearer for ScummVM anyway --- engines/glk/glk.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/glk/glk.h') diff --git a/engines/glk/glk.h b/engines/glk/glk.h index 91702c56be..ccf58c07a7 100644 --- a/engines/glk/glk.h +++ b/engines/glk/glk.h @@ -112,9 +112,9 @@ public: Windows *_windows; bool _copySelect; bool _terminated; - void (*gli_unregister_obj)(void *obj, glui32 objclass, gidispatch_rock_t objrock); - gidispatch_rock_t (*gli_register_arr)(void *array, glui32 len, const char *typecode); - void (*gli_unregister_arr)(void *array, glui32 len, const char *typecode, gidispatch_rock_t objrock); + void (*gli_unregister_obj)(void *obj, uint objclass, gidispatch_rock_t objrock); + gidispatch_rock_t (*gli_register_arr)(void *array, uint len, const char *typecode); + void (*gli_unregister_arr)(void *array, uint len, const char *typecode, gidispatch_rock_t objrock); public: GlkEngine(OSystem *syst, const GlkGameDescription &gameDesc); -- cgit v1.2.3