diff options
Diffstat (limited to 'engines/sci/gui/gui_gfx.cpp')
| -rw-r--r-- | engines/sci/gui/gui_gfx.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/gui/gui_gfx.cpp b/engines/sci/gui/gui_gfx.cpp index 62494ca627..4698844160 100644 --- a/engines/sci/gui/gui_gfx.cpp +++ b/engines/sci/gui/gui_gfx.cpp @@ -298,7 +298,6 @@ void SciGuiGfx::SetCLUT(GuiPalette*pal) { bpal[i * 4 + 3] = 100; } _system->setPalette(bpal, 0, 256); - _system->updateScreen(); } void SciGuiGfx::GetCLUT(GuiPalette*pal) { @@ -832,7 +831,7 @@ void SciGuiGfx::ShowBits(const Common::Rect &r, uint16 flags) { OffsetRect(rect); assert((flags&0x8000) == 0); - _screen->updateScreen(); + _screen->copyToScreen(); // _system->copyRectToScreen(GetSegment(flags) + _baseTable[rect.top] + rect.left, 320, rect.left, rect.top, rect.width(), rect.height()); // _system->updateScreen(); } |
