diff options
author | Paul Gilbert | 2015-07-28 21:04:21 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-28 21:04:21 -0400 |
commit | 1460e1f2965a474a968ecabc091c437ee5692927 (patch) | |
tree | a994ea27661aaccd894f003ad4c6d8a600eb4e9e /engines/sherlock | |
parent | 23152571554672ada336cee4311f351e409609dc (diff) | |
download | scummvm-rg350-1460e1f2965a474a968ecabc091c437ee5692927.tar.gz scummvm-rg350-1460e1f2965a474a968ecabc091c437ee5692927.tar.bz2 scummvm-rg350-1460e1f2965a474a968ecabc091c437ee5692927.zip |
SHERLOCK: RT: Properly redraw screen after closing journal
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_user_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp index d8faa3e0ae..e8756a7f3e 100644 --- a/engines/sherlock/tattoo/tattoo_user_interface.cpp +++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp @@ -229,7 +229,7 @@ void TattooUserInterface::doJournal() { screen._backBuffer1.blitFrom(screen._backBuffer2); scene.updateBackground(); - screen.slamArea(0, 0, SHERLOCK_SCREEN_WIDTH, SHERLOCK_SCREEN_HEIGHT); + screen.slamArea(screen._currentScroll.x, screen._currentScroll.y, SHERLOCK_SCREEN_WIDTH, SHERLOCK_SCREEN_HEIGHT); } void TattooUserInterface::reset() { |