aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_hof.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-10 17:41:34 +0000
committerJohannes Schickel2008-05-10 17:41:34 +0000
commit95a85a8984bbd9e6fe9a84d1fa83f1bf1652dc46 (patch)
tree21dfbf861ca2899702b918377e39aeb3b191e318 /engines/kyra/kyra_hof.cpp
parent870a330c66cdd2f6ae5ca973fcdce802b3f8c48e (diff)
downloadscummvm-rg350-95a85a8984bbd9e6fe9a84d1fa83f1bf1652dc46.tar.gz
scummvm-rg350-95a85a8984bbd9e6fe9a84d1fa83f1bf1652dc46.tar.bz2
scummvm-rg350-95a85a8984bbd9e6fe9a84d1fa83f1bf1652dc46.zip
Simplification in updateItemAnimations in KyraEngine_HoF and KyraEngine_MR.
svn-id: r31976
Diffstat (limited to 'engines/kyra/kyra_hof.cpp')
-rw-r--r--engines/kyra/kyra_hof.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/kyra/kyra_hof.cpp b/engines/kyra/kyra_hof.cpp
index 7aa5f9373b..cd4ed72ae3 100644
--- a/engines/kyra/kyra_hof.cpp
+++ b/engines/kyra/kyra_hof.cpp
@@ -724,7 +724,7 @@ void KyraEngine_HoF::updateMouse() {
}
if (type != 0 && _handItemSet != type && _screen->isMouseVisible()) {
- _mouseState = _handItemSet = type;
+ _handItemSet = type;
_screen->hideMouse();
_screen->setMouseCursor(xOffset, yOffset, getShapePtr(shapeIndex));
_screen->showMouse();
@@ -732,7 +732,6 @@ void KyraEngine_HoF::updateMouse() {
if (type == 0 && _handItemSet != _itemInHand && _screen->isMouseVisible()) {
if ((mouse.y > 145) || (mouse.x > 6 && mouse.x < 312 && mouse.y > 6 && mouse.y < 135)) {
- _mouseState = 0;
_handItemSet = _itemInHand;
_screen->hideMouse();
if (_itemInHand == -1)