aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/snail.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/snail.h')
-rw-r--r--engines/cge/snail.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/cge/snail.h b/engines/cge/snail.h
index f7e19290e6..b3268341d8 100644
--- a/engines/cge/snail.h
+++ b/engines/cge/snail.h
@@ -46,14 +46,14 @@
-typedef struct { byte Horz, Vert; } BAR;
+typedef struct { uint8 Horz, Vert; } BAR;
struct SCB
{
- byte * Ptr;
- word Siz;
+ uint8 * Ptr;
+ uint16 Siz;
SCB * Nxt;
};
@@ -82,9 +82,9 @@ enum SNLIST { NEAR, TAKE };
class SNAIL
{
struct COM { SNCOM Com; int Ref; int Val; void * Ptr; } * SNList;
- byte Head, Tail;
+ uint8 Head, Tail;
bool Turbo, Busy, TextDelay;
- word Pause;
+ uint16 Pause;
public:
static char * ComTxt[];
bool TalkEnable;