aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorFlorian Kagerer2008-05-10 15:31:11 +0000
committerFlorian Kagerer2008-05-10 15:31:11 +0000
commit870a330c66cdd2f6ae5ca973fcdce802b3f8c48e (patch)
tree4665975f7d0348736c2add66dd6ae6f465e9d0f2 /engines/kyra
parent8bbf257525c9b96a4a69cddd668907a0b2657b0d (diff)
downloadscummvm-rg350-870a330c66cdd2f6ae5ca973fcdce802b3f8c48e.tar.gz
scummvm-rg350-870a330c66cdd2f6ae5ca973fcdce802b3f8c48e.tar.bz2
scummvm-rg350-870a330c66cdd2f6ae5ca973fcdce802b3f8c48e.zip
(hopefully) fix bug in last commit
svn-id: r31975
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/animator_mr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/animator_mr.cpp b/engines/kyra/animator_mr.cpp
index feea7c905b..3498573a90 100644
--- a/engines/kyra/animator_mr.cpp
+++ b/engines/kyra/animator_mr.cpp
@@ -215,7 +215,7 @@ void KyraEngine_MR::updateItemAnimations() {
return;
uint16 shpIdx = s->frames[a->currentFrame].index + 248;
- if ((s->itemIndex == _handItemSet || s->itemIndex == _itemInHand) && (!_mouseState && _screen->isMouseVisible())) {
+ if ((/*s->itemIndex == _handItemSet || */s->itemIndex == _itemInHand) && (!_mouseState && _screen->isMouseVisible())) {
nextFrame = true;
_screen->setMouseCursor(12, 19, getShapePtr(shpIdx));
}