aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/animation.cpp
diff options
context:
space:
mode:
authorStrangerke2013-09-29 23:59:01 +0200
committerStrangerke2013-09-29 23:59:01 +0200
commit55a3af61c99e621f7306b416f23df7ccc0478942 (patch)
treef892dd08bf761ef1a227a30e6e395f0dc86bc6f1 /engines/avalanche/animation.cpp
parent24bca9d9277d9557571295d62ff75eb3ce45ac23 (diff)
downloadscummvm-rg350-55a3af61c99e621f7306b416f23df7ccc0478942.tar.gz
scummvm-rg350-55a3af61c99e621f7306b416f23df7ccc0478942.tar.bz2
scummvm-rg350-55a3af61c99e621f7306b416f23df7ccc0478942.zip
AVALANCHE: Fix more gcc warnings reported by wjp
Diffstat (limited to 'engines/avalanche/animation.cpp')
-rw-r--r--engines/avalanche/animation.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/avalanche/animation.cpp b/engines/avalanche/animation.cpp
index bf97328c5a..57f9cdb7c5 100644
--- a/engines/avalanche/animation.cpp
+++ b/engines/avalanche/animation.cpp
@@ -892,6 +892,8 @@ void Animation::setMoveSpeed(byte t, Direction dir) {
case kDirDownRight:
_sprites[t].setSpeed(_sprites[t]._speedX, _sprites[t]._speedY);
break;
+ default:
+ break;
}
}