aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vmenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/vmenu.h')
-rw-r--r--engines/cge/vmenu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/vmenu.h b/engines/cge/vmenu.h
index 23c354b504..d2b70145df 100644
--- a/engines/cge/vmenu.h
+++ b/engines/cge/vmenu.h
@@ -45,7 +45,7 @@ typedef struct { char * Text; void (* Proc)(void); } CHOICE;
class MENU_BAR : public TALK
{
public:
- MENU_BAR (word w);
+ MENU_BAR (uint16 w);
};
@@ -56,7 +56,7 @@ public:
class VMENU : public TALK
{
- word Items;
+ uint16 Items;
CHOICE * Menu;
public:
static VMENU * Addr;
@@ -64,7 +64,7 @@ public:
MENU_BAR * Bar;
VMENU (CHOICE * list, int x, int y);
~VMENU (void);
- void Touch (word mask, int x, int y);
+ void Touch (uint16 mask, int x, int y);
};