diff options
author | Paul Gilbert | 2015-06-17 22:06:53 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-17 22:06:53 -0400 |
commit | 0f6d103353f4ffcdc07dbfd7cde10678a60ebaf5 (patch) | |
tree | 65745eac408b908944b4b3ed9a0c8987a234fa41 /engines | |
parent | 94d7928dbc7ea1d2de0e82f69a3b5d255f2319fd (diff) | |
download | scummvm-rg350-0f6d103353f4ffcdc07dbfd7cde10678a60ebaf5.tar.gz scummvm-rg350-0f6d103353f4ffcdc07dbfd7cde10678a60ebaf5.tar.bz2 scummvm-rg350-0f6d103353f4ffcdc07dbfd7cde10678a60ebaf5.zip |
SHERLOCK: RT: Remove old hard-coded walk block used for testing
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_user_interface.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/engines/sherlock/tattoo/tattoo_user_interface.cpp b/engines/sherlock/tattoo/tattoo_user_interface.cpp index e918036c8f..56dbb48a76 100644 --- a/engines/sherlock/tattoo/tattoo_user_interface.cpp +++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp @@ -467,16 +467,7 @@ void TattooUserInterface::doStandardControl() { default: break; } -static bool flag = false; //***DEBUG**** - temporarily being used for testing walking */ -if (!flag && events._released) { - flag = true; - people._allowWalkAbort = true; - people[HOLMES]._walkDest = Common::Point(235, 370); - people[HOLMES].goAllTheWay(); - - events._released = false; - return; -} + // See if a mouse button was released if (events._released || events._rightReleased) { // See if the mouse was released in an exit (Arrow) zone. Unless it's also pointing at an object |