aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vmenu.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/vmenu.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/vmenu.cpp')
-rw-r--r--engines/cge/vmenu.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/cge/vmenu.cpp b/engines/cge/vmenu.cpp
index 4ca3708eac..f7314e18ea 100644
--- a/engines/cge/vmenu.cpp
+++ b/engines/cge/vmenu.cpp
@@ -64,10 +64,10 @@ MENU_BAR::MENU_BAR (word w)
}
TS[0] = new BITMAP(w, h, p);
SetShapeList(TS);
- Flags.Slav = TRUE;
- Flags.Tran = TRUE;
- Flags.Kill = TRUE;
- Flags.BDel = TRUE;
+ Flags.Slav = true;
+ Flags.Tran = true;
+ Flags.Kill = true;
+ Flags.BDel = true;
}
@@ -120,8 +120,8 @@ VMENU::VMENU (CHOICE * list, int x, int y)
delete[] vmgt;
Items = 0;
for (cp = list; cp->Text; cp ++) ++ Items;
- Flags.BDel = TRUE;
- Flags.Kill = TRUE;
+ Flags.BDel = true;
+ Flags.Kill = true;
if (x < 0 || y < 0) Center();
else Goto(x - W / 2, y - (TEXT_VM + FONT_HIG / 2));
VGA::ShowQ.Insert(this, VGA::ShowQ.Last());
@@ -145,7 +145,7 @@ void VMENU::Touch (word mask, int x, int y)
{
#define h (FONT_HIG+TEXT_LS)
int n = 0;
- Boolean ok = FALSE;
+ bool ok = false;
if (Items)
{