aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/animation.cpp')
-rw-r--r--engines/avalanche/animation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/avalanche/animation.cpp b/engines/avalanche/animation.cpp
index 747f014dfb..5bff12307b 100644
--- a/engines/avalanche/animation.cpp
+++ b/engines/avalanche/animation.cpp
@@ -322,14 +322,14 @@ void AnimationType::setSpeed(int8 xx, int8 yy) {
if (_moveX == 0) {
// No horz movement
if (_moveY < 0)
- turn(_anim->kDirUp);
+ turn(Animation::kDirUp);
else
- turn(_anim->kDirDown);
+ turn(Animation::kDirDown);
} else {
if (_moveX < 0)
- turn(_anim->kDirLeft);
+ turn(Animation::kDirLeft);
else
- turn(_anim->kDirRight);
+ turn(Animation::kDirRight);
}
}