diff options
author | Paul Gilbert | 2015-07-08 07:57:36 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-08 07:57:36 -0400 |
commit | 08414cfaed5554796a0ea94c66f7e50a03395797 (patch) | |
tree | 6a01f50f8cea195b21166e37d78eadbde231c398 /engines | |
parent | ed2caf7cd64ad16110dba763ebda8bbbdb69a244 (diff) | |
download | scummvm-rg350-08414cfaed5554796a0ea94c66f7e50a03395797.tar.gz scummvm-rg350-08414cfaed5554796a0ea94c66f7e50a03395797.tar.bz2 scummvm-rg350-08414cfaed5554796a0ea94c66f7e50a03395797.zip |
SHERLOCK: RT: Fix screen drawing when actively scrolling screen
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_scene.cpp b/engines/sherlock/tattoo/tattoo_scene.cpp index 2d82b2f641..f8ca2651c6 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; } |