aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/talk.cpp
diff options
context:
space:
mode:
authorStrangerke2011-06-10 13:06:03 +0200
committerStrangerke2011-06-10 13:06:03 +0200
commit68f7ff111536c2d7f5a8869252ba8ad31507a380 (patch)
tree67d397572233ad9963cd0e96cbf049620d8a9e47 /engines/cge/talk.cpp
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/talk.cpp')
-rw-r--r--engines/cge/talk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/talk.cpp b/engines/cge/talk.cpp
index 2e247336ab..d941dba274 100644
--- a/engines/cge/talk.cpp
+++ b/engines/cge/talk.cpp
@@ -138,7 +138,7 @@ TALK::TALK (const char * tx, TBOX_STYLE mode)
: SPRITE(NULL), Mode(mode)
{
TS[0] = TS[1] = NULL;
- Flags.Syst = TRUE;
+ Flags.Syst = true;
Update(tx);
}
@@ -150,7 +150,7 @@ TALK::TALK (void)
: SPRITE(NULL), Mode(PURE)
{
TS[0] = TS[1] = NULL;
- Flags.Syst = TRUE;
+ Flags.Syst = true;
}
@@ -163,7 +163,7 @@ TALK::~TALK (void)
word i;
for (i = 0; i < ShpCnt; i ++)
{
- if (FP_SEG(ShpList[i]) != _DS) // small model: always FALSE
+ if (FP_SEG(ShpList[i]) != _DS) // small model: always false
{
delete ShpList[i];
ShpList[i] = NULL;