diff options
author | Paul Gilbert | 2015-07-19 19:40:51 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-19 19:40:51 -0400 |
commit | 87a91e69e6f9e2caa40b448e386e0b4adcb8393e (patch) | |
tree | 6921eb75af04fc30b93923a6e60e39f9cdcf00da /engines/sherlock | |
parent | 4e7a4695e0f980c7cc6e54eb442365d19752cc16 (diff) | |
download | scummvm-rg350-87a91e69e6f9e2caa40b448e386e0b4adcb8393e.tar.gz scummvm-rg350-87a91e69e6f9e2caa40b448e386e0b4adcb8393e.tar.bz2 scummvm-rg350-87a91e69e6f9e2caa40b448e386e0b4adcb8393e.zip |
SHERLOCK: RT: Fix walking when the screen is scrolled
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 c5dda24a4c..779c9ab5fb 100644 --- a/engines/sherlock/tattoo/tattoo_user_interface.cpp +++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp @@ -478,7 +478,7 @@ void TattooUserInterface::doStandardControl() { events._pressed = events._released = false; } else { // Walk to where the mouse was clicked - people[HOLMES]._walkDest = mousePos + screen._currentScroll; + people[HOLMES]._walkDest = mousePos; people[HOLMES].goAllTheWay(); } } |