From 08414cfaed5554796a0ea94c66f7e50a03395797 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 8 Jul 2015 07:57:36 -0400 Subject: [PATCH] SHERLOCK: RT: Fix screen drawing when actively scrolling screen --- engines/sherlock/tattoo/tattoo_scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sherlock/tattoo/tattoo_scene.cpp b/engines/sherlock/tattoo/tattoo_scene.cpp index 2d82b2f6410..f8ca2651c61 100644 --- a/engines/sherlock/tattoo/tattoo_scene.cpp +++ b/engines/sherlock/tattoo/tattoo_scene.cpp @@ -354,7 +354,7 @@ void TattooScene::doBgAnim() { events.wait(3); if (screen._flushScreen) { - screen.slamRect(Common::Rect(0, 0, SHERLOCK_SCREEN_WIDTH, SHERLOCK_SCREEN_HEIGHT)); + screen.slamArea(screen._currentScroll.x, screen._currentScroll.y, SHERLOCK_SCREEN_WIDTH, SHERLOCK_SCREEN_HEIGHT); screen._flushScreen = false; }