From d0517f515eb7f36ec7222f3d50f4917fbd7df5e7 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Fri, 26 Aug 2016 19:50:13 -0500 Subject: SCI32: Update screen on frameout, instead of in the event loop --- engines/sci/graphics/frameout.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'engines/sci/graphics/frameout.cpp') diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index 4e0aa22669..e886193ccc 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -1108,6 +1108,7 @@ void GfxFrameout::mergeToShowList(const Common::Rect &drawRect, RectList &showLi void GfxFrameout::showBits() { if (!_showList.size()) { + g_system->updateScreen(); return; } @@ -1146,6 +1147,7 @@ void GfxFrameout::showBits() { _cursor->donePainting(); _showList.clear(); + g_system->updateScreen(); } void GfxFrameout::alterVmap(const Palette &palette1, const Palette &palette2, const int8 style, const int8 *const styleRanges) { -- cgit v1.2.3