diff options
author | Paul Gilbert | 2015-06-30 22:50:00 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-30 22:50:00 -0400 |
commit | 6b3fe382ec70ac027bb87722fab0d7d612d42ea7 (patch) | |
tree | e6e806fa3af9a7128f5fbaddbebdac4d63343ad5 /engines/sherlock/tattoo | |
parent | d2c4074fa65106e5e26f66cf9ce79fe6f5214da6 (diff) | |
download | scummvm-rg350-6b3fe382ec70ac027bb87722fab0d7d612d42ea7.tar.gz scummvm-rg350-6b3fe382ec70ac027bb87722fab0d7d612d42ea7.tar.bz2 scummvm-rg350-6b3fe382ec70ac027bb87722fab0d7d612d42ea7.zip |
SHERLOCK: Change _lookPosition to use PositionFacing
Diffstat (limited to 'engines/sherlock/tattoo')
-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 7de78457c6..107eeba0d0 100644 --- a/engines/sherlock/tattoo/tattoo_user_interface.cpp +++ b/engines/sherlock/tattoo/tattoo_user_interface.cpp @@ -87,7 +87,7 @@ void TattooUserInterface::lookAtObject() { } else if (_bgShape->_lookPosition.y != 0) { // Need to walk to object before looking at it people[HOLMES].walkToCoords(Common::Point(_bgShape->_lookPosition.x * FIXED_INT_MULTIPLIER, - _bgShape->_lookPosition.y * FIXED_INT_MULTIPLIER), _bgShape->_lookFacing); + _bgShape->_lookPosition.y * FIXED_INT_MULTIPLIER), _bgShape->_lookPosition._facing); } if (!talk._talkToAbort) { |