From 68f7ff111536c2d7f5a8869252ba8ad31507a380 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 10 Jun 2011 13:06:03 +0200 Subject: CGE: Replace Boolean, TRUE and FALSE by bool, true, false --- engines/cge/bitmap.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/cge/bitmap.h') 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); }; -- cgit v1.2.3