diff options
Diffstat (limited to 'engines/sci/gui/gui_gfx.cpp')
-rw-r--r-- | engines/sci/gui/gui_gfx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/gui/gui_gfx.cpp b/engines/sci/gui/gui_gfx.cpp index 0a3a36ce33..1df394c302 100644 --- a/engines/sci/gui/gui_gfx.cpp +++ b/engines/sci/gui/gui_gfx.cpp @@ -300,9 +300,9 @@ void SciGuiGfx::drawPicture(GuiResourceId pictureId, int16 animationNr, bool mir SciGuiPicture *picture; picture = new SciGuiPicture(_s->resMan, this, _screen, _palette, pictureId); - // do we add to a picture? if not -> clear screen + // do we add to a picture? if not -> clear screen with white if (!addToFlag) { - ClearScreen(_screen->_colorClearScreen); + ClearScreen(_screen->_colorWhite); } picture->draw(animationNr, mirroredFlag, addToFlag, paletteId); } |