aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/gettext.h
diff options
context:
space:
mode:
authorStrangerke2011-06-10 19:02:13 +0200
committerStrangerke2011-06-10 19:02:13 +0200
commit7d88b9e4cde321ec210c5da022046639a316179b (patch)
tree0b59d842ae4cba125934cadb94e28794c26817d9 /engines/cge/gettext.h
parent68f7ff111536c2d7f5a8869252ba8ad31507a380 (diff)
downloadscummvm-rg350-7d88b9e4cde321ec210c5da022046639a316179b.tar.gz
scummvm-rg350-7d88b9e4cde321ec210c5da022046639a316179b.tar.bz2
scummvm-rg350-7d88b9e4cde321ec210c5da022046639a316179b.zip
CGE: Suppress typedef for byte, word and dword.
Diffstat (limited to 'engines/cge/gettext.h')
-rw-r--r--engines/cge/gettext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/gettext.h b/engines/cge/gettext.h
index 2fbd6f5da6..d08e09a5bb 100644
--- a/engines/cge/gettext.h
+++ b/engines/cge/gettext.h
@@ -45,15 +45,15 @@
class GET_TEXT : public TALK
{
char Buff[GTMAX+2], * Text;
- word Size, Len;
- word Cntr;
+ uint16 Size, Len;
+ uint16 Cntr;
SPRITE * OldKeybClient;
void (*Click)(void);
public:
static GET_TEXT * Ptr;
GET_TEXT (const char * info, char * text, int size, void (*click)(void) = NULL);
~GET_TEXT (void);
- void Touch (word mask, int x, int y);
+ void Touch (uint16 mask, int x, int y);
void Tick (void);
};