diff options
author | Strangerke | 2016-09-21 07:57:44 +0200 |
---|---|---|
committer | Strangerke | 2016-09-21 07:57:44 +0200 |
commit | 76fcf4f025801a426246d515efe65953158e01f1 (patch) | |
tree | 52b0aaff45858907b7c74c2bfe4a4560eee345d3 /engines/dm | |
parent | 4133ea66c13bde70b1383e525b20202ead875722 (diff) | |
download | scummvm-rg350-76fcf4f025801a426246d515efe65953158e01f1.tar.gz scummvm-rg350-76fcf4f025801a426246d515efe65953158e01f1.tar.bz2 scummvm-rg350-76fcf4f025801a426246d515efe65953158e01f1.zip |
DM: Fix GCC warnings reported by eriktorbjorn
Diffstat (limited to 'engines/dm')
-rw-r--r-- | engines/dm/group.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/dm/group.cpp b/engines/dm/group.cpp index 7fd5065dda..5eb00208c7 100644 --- a/engines/dm/group.cpp +++ b/engines/dm/group.cpp @@ -710,6 +710,8 @@ T0209005_AddEventAndReturn: approachAfterReaction = (AL0447_i_Behavior == kDMBehaviorAttack); /* If the creature behavior is 'Attack' and it has to move to avoid danger then it will change its behavior to 'Approach' after the movement */ newGroupDirectionFound = false; goto T0209058_MoveInRandomDirection; + default: + break; } } if (eventType < kDMEventTypeUpdateBehaviourGroup) { /* Process Update Aspect events 32 to 36 */ |