aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/snail.h
diff options
context:
space:
mode:
authorStrangerke2011-06-10 13:06:03 +0200
committerStrangerke2011-06-10 13:06:03 +0200
commit68f7ff111536c2d7f5a8869252ba8ad31507a380 (patch)
tree67d397572233ad9963cd0e96cbf049620d8a9e47 /engines/cge/snail.h
parenta5c569eff2c4e2f30ef0523169ab22ed92f9894a (diff)
downloadscummvm-rg350-68f7ff111536c2d7f5a8869252ba8ad31507a380.tar.gz
scummvm-rg350-68f7ff111536c2d7f5a8869252ba8ad31507a380.tar.bz2
scummvm-rg350-68f7ff111536c2d7f5a8869252ba8ad31507a380.zip
CGE: Replace Boolean, TRUE and FALSE by bool, true, false
Diffstat (limited to 'engines/cge/snail.h')
-rw-r--r--engines/cge/snail.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/cge/snail.h b/engines/cge/snail.h
index 309f9b5a29..f7e19290e6 100644
--- a/engines/cge/snail.h
+++ b/engines/cge/snail.h
@@ -83,17 +83,17 @@ class SNAIL
{
struct COM { SNCOM Com; int Ref; int Val; void * Ptr; } * SNList;
byte Head, Tail;
- Boolean Turbo, Busy, TextDelay;
+ bool Turbo, Busy, TextDelay;
word Pause;
public:
static char * ComTxt[];
- Boolean TalkEnable;
- SNAIL (Boolean turbo = FALSE);
+ bool TalkEnable;
+ SNAIL (bool turbo = false);
~SNAIL (void);
void RunCom (void);
void AddCom (SNCOM com, int ref = 0, int val = 0, void * ptr = NULL);
void InsCom (SNCOM com, int ref = 0, int val = 0, void * ptr = NULL);
- Boolean Idle (void);
+ bool Idle (void);
};
@@ -110,9 +110,9 @@ void PocFul (void);
extern SCB Scb;
-extern Boolean Flag[4];
-extern Boolean Game;
-extern Boolean Dark;
+extern bool Flag[4];
+extern bool Game;
+extern bool Dark;
extern SNAIL Snail;
extern SNAIL Snail_;
extern int Now;