diff options
author | D G Turner | 2019-11-30 23:50:44 +0000 |
---|---|---|
committer | D G Turner | 2019-11-30 23:50:44 +0000 |
commit | c2149c042e03930fea0eaed252a630ca63ec6af6 (patch) | |
tree | 15f2f3c6135bbb30b491967145a690d66ad59b94 /engines/titanic/game/transport/pellerator.cpp | |
parent | b25c4b21fdd6f911b94fb411087078ecf756691e (diff) | |
download | scummvm-rg350-c2149c042e03930fea0eaed252a630ca63ec6af6.tar.gz scummvm-rg350-c2149c042e03930fea0eaed252a630ca63ec6af6.tar.bz2 scummvm-rg350-c2149c042e03930fea0eaed252a630ca63ec6af6.zip |
TITANIC: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'engines/titanic/game/transport/pellerator.cpp')
-rw-r--r-- | engines/titanic/game/transport/pellerator.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/titanic/game/transport/pellerator.cpp b/engines/titanic/game/transport/pellerator.cpp index 55f701f0f0..7d8dda1f20 100644 --- a/engines/titanic/game/transport/pellerator.cpp +++ b/engines/titanic/game/transport/pellerator.cpp @@ -127,7 +127,10 @@ bool CPellerator::StatusChangeMsg(CStatusChangeMsg *msg) { playMovie(3, 71, 0); for (int idx = 0; idx < 3; ++idx) playMovie(299, 304, 0); + break; + default: + break; } } } else { |