From b4c1e86d9f8f51e67a2086301fab30a415b04581 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 6 Aug 2017 11:51:57 +0200 Subject: JANITORIAL: Silence GCC warning Since case 64 was added for "MM C64 Costume Animation", and considering the way it's written to only affect game version 0, it is clearly an intentional fall through. --- engines/scumm/actor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp index 5b7e14406a..e3f93e5c97 100644 --- a/engines/scumm/actor.cpp +++ b/engines/scumm/actor.cpp @@ -2467,6 +2467,7 @@ void Actor::animateActor(int anim) { setDirection(dir); break; } + // fall through default: if (_vm->_game.version <= 2) startAnimActor(anim / 4); -- cgit v1.2.3