Skip to content

Commit

Permalink
FULLPIPE: Fix regression with absent background graphics.
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Dec 22, 2013
1 parent 7664add commit e7ac135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/fullpipe/gfx.cpp
Expand Up @@ -807,7 +807,7 @@ bool Bitmap::putDibRB(int32 *palette, int pX, int pY) {
uint16 *srcPtr;

if (!palette && pX == -1) {
warning("Bitmap::putDibRB(): Both global and local palettes are empty");
debug(2, "Bitmap::putDibRB(): Both global and local palettes are empty");
return false;
}

Expand Down Expand Up @@ -1179,7 +1179,7 @@ bool BigPicture::load(MfcArchive &file) {
}

void BigPicture::draw(int x, int y, int style, int angle) {
if (_bitmap)
if (!_bitmap)
init();

if (_bitmap) {
Expand Down

0 comments on commit e7ac135

Please sign in to comment.