aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cge_main.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/cge_main.h')
-rw-r--r--engines/cge/cge_main.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/cge_main.h b/engines/cge/cge_main.h
index 4f610897b1..c1155eb650 100644
--- a/engines/cge/cge_main.h
+++ b/engines/cge/cge_main.h
@@ -148,7 +148,7 @@ public:
static void SetPal (void);
static void FunTouch (void);
SYSTEM (void) : SPRITE(NULL) { SetPal(); Tick(); }
- void Touch (word mask, int x, int y);
+ void Touch (uint16 mask, int x, int y);
void Tick (void);
};
@@ -163,8 +163,8 @@ public:
class CLUSTER : public COUPLE
{
public:
- static byte Map[MAP_ZCNT][MAP_XCNT];
- byte &Cell (void);
+ static uint8 Map[MAP_ZCNT][MAP_XCNT];
+ uint8 &Cell (void);
CLUSTER (void) : COUPLE () { }
CLUSTER (int a, int b) : COUPLE (a, b) { }
bool Protected (void);