diff options
author | Christoph Mallon | 2011-12-08 08:04:41 +0100 |
---|---|---|
committer | Alyssa Milburn | 2012-03-13 15:42:38 +0100 |
commit | 983cd2129496305bd68b12adde3117ef247135d1 (patch) | |
tree | 98da60d070119f2669434ed206f0989f7feb3fa4 | |
parent | e618e6794ddcd528d157000c01e4f75dc6de3e2f (diff) | |
download | scummvm-rg350-983cd2129496305bd68b12adde3117ef247135d1.tar.gz scummvm-rg350-983cd2129496305bd68b12adde3117ef247135d1.tar.bz2 scummvm-rg350-983cd2129496305bd68b12adde3117ef247135d1.zip |
JANITORIAL: Do not convert false to a null pointer.
-rw-r--r-- | engines/cge/bitmap.cpp | 2 |
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; |