aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/bitmap.cpp
diff options
context:
space:
mode:
authorChristoph Mallon2011-12-08 08:04:41 +0100
committerAlyssa Milburn2012-03-13 15:42:38 +0100
commit983cd2129496305bd68b12adde3117ef247135d1 (patch)
tree98da60d070119f2669434ed206f0989f7feb3fa4 /engines/cge/bitmap.cpp
parente618e6794ddcd528d157000c01e4f75dc6de3e2f (diff)
downloadscummvm-rg350-983cd2129496305bd68b12adde3117ef247135d1.tar.gz
scummvm-rg350-983cd2129496305bd68b12adde3117ef247135d1.tar.bz2
scummvm-rg350-983cd2129496305bd68b12adde3117ef247135d1.zip
JANITORIAL: Do not convert false to a null pointer.
Diffstat (limited to 'engines/cge/bitmap.cpp')
-rw-r--r--engines/cge/bitmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/bitmap.cpp b/engines/cge/bitmap.cpp
index 37f4eb070e..309b89bdda 100644
--- a/engines/cge/bitmap.cpp
+++ b/engines/cge/bitmap.cpp
@@ -158,7 +158,7 @@ BitmapPtr Bitmap::code() {
debugC(1, kCGEDebugBitmap, "Bitmap::code()");
if (!_m)
- return false;
+ return NULL;
uint16 cnt;