diff options
author | Paul Gilbert | 2017-08-06 22:09:14 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-06 22:09:14 -0400 |
commit | 28442d47c41b62947737402e239e220e965d53e0 (patch) | |
tree | 172ac4d8fdfcc968fbb378b104551f835d219461 /engines/cruise | |
parent | bad821d451ac4b7af4225e5c4fcfa71a2f7a47a3 (diff) | |
download | scummvm-rg350-28442d47c41b62947737402e239e220e965d53e0.tar.gz scummvm-rg350-28442d47c41b62947737402e239e220e965d53e0.tar.bz2 scummvm-rg350-28442d47c41b62947737402e239e220e965d53e0.zip |
CRUISE: Add explicit fall through comments to switch
Diffstat (limited to 'engines/cruise')
-rw-r--r-- | engines/cruise/actor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/cruise/actor.cpp b/engines/cruise/actor.cpp index 331b1c1edd..7d5c16c3d2 100644 --- a/engines/cruise/actor.cpp +++ b/engines/cruise/actor.cpp @@ -853,6 +853,7 @@ void processAnimation() { } } } + // fall through case ANIM_PHASE_MOVE: { @@ -893,6 +894,7 @@ void processAnimation() { break; } } + // fall through case ANIM_PHASE_END: { |