diff options
author | Eugene Sandulenko | 2013-12-22 23:46:04 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-12-23 00:39:26 +0200 |
commit | e7ac135919ceac08db89d004d106bfc6917028d2 (patch) | |
tree | 0752f11fbb5dc84b0e5b34dc73790a289cc6d6e7 /engines/fullpipe | |
parent | 7664add3d2b458a3c2a7ec54334fe078f83bfe35 (diff) | |
download | scummvm-rg350-e7ac135919ceac08db89d004d106bfc6917028d2.tar.gz scummvm-rg350-e7ac135919ceac08db89d004d106bfc6917028d2.tar.bz2 scummvm-rg350-e7ac135919ceac08db89d004d106bfc6917028d2.zip |
FULLPIPE: Fix regression with absent background graphics.
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/gfx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 4b0125e6a4..8b2aca4bdb 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -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; } @@ -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) { |