aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/keybd.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/keybd.h')
-rw-r--r--engines/cge/keybd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cge/keybd.h b/engines/cge/keybd.h
index 7aa93b232f..dfbd439805 100644
--- a/engines/cge/keybd.h
+++ b/engines/cge/keybd.h
@@ -43,12 +43,12 @@ class KEYBOARD
{
static void interrupt (* OldKeyboard) (...);
static void interrupt NewKeyboard (...);
- static word Code[0x60];
- static word Current;
+ static uint16 Code[0x60];
+ static uint16 Current;
static SPRITE * Client;
public:
- static byte Key[0x60];
- static word Last (void) { _AX = Current; Current = 0; return _AX; }
+ static uint8 Key[0x60];
+ static uint16 Last (void) { _AX = Current; Current = 0; return _AX; }
static SPRITE * SetClient (SPRITE * spr);
KEYBOARD (void);
~KEYBOARD (void);