Skip to content

Commit

Permalink
JANITORIAL: Do not convert false to a null pointer.
Browse files Browse the repository at this point in the history
  • Loading branch information
chmallon authored and fuzzie committed Mar 13, 2012
1 parent e618e67 commit 983cd21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/cge/bitmap.cpp
Expand Up @@ -158,7 +158,7 @@ BitmapPtr Bitmap::code() {
debugC(1, kCGEDebugBitmap, "Bitmap::code()");

if (!_m)
return false;
return NULL;

uint16 cnt;

Expand Down

0 comments on commit 983cd21

Please sign in to comment.