aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/bitmap.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/bitmap.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/bitmap.h')
-rw-r--r--engines/cge/bitmap.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/cge/bitmap.h b/engines/cge/bitmap.h
index 738b3ab4ef..de2214fd63 100644
--- a/engines/cge/bitmap.h
+++ b/engines/cge/bitmap.h
@@ -55,13 +55,13 @@ typedef struct { word skip; word hide; } HideDesc;
class BITMAP
{
- Boolean BMPLoad (XFILE * f);
- Boolean VBMLoad (XFILE * f);
+ bool BMPLoad (XFILE * f);
+ bool VBMLoad (XFILE * f);
public:
static DAC * Pal;
word W, H;
byte * M, * V; HideDesc * B;
- BITMAP (const char * fname, Boolean rem = TRUE);
+ BITMAP (const char * fname, bool rem = true);
BITMAP (word w, word h, byte * map);
BITMAP (word w, word h, byte fill);
BITMAP (const BITMAP& bmp);
@@ -72,8 +72,8 @@ public:
void Hide (int x, int y);
void Show (int x, int y);
void XShow (int x, int y);
- Boolean SolidAt (int x, int y);
- Boolean VBMSave (XFILE * f);
+ bool SolidAt (int x, int y);
+ bool VBMSave (XFILE * f);
word MoveVmap (byte * buf);
};