diff options
author | Paul Gilbert | 2017-07-23 10:01:16 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-07-23 10:01:16 -0400 |
commit | 807fecf0f2077885daf4996dce8005f030a7c60a (patch) | |
tree | ecdc4040634350899049ad8c686a66583c452f69 /engines/titanic/npcs | |
parent | 7fcfb4214ed02cec1c01b28632dcef4cffee6669 (diff) | |
download | scummvm-rg350-807fecf0f2077885daf4996dce8005f030a7c60a.tar.gz scummvm-rg350-807fecf0f2077885daf4996dce8005f030a7c60a.tar.bz2 scummvm-rg350-807fecf0f2077885daf4996dce8005f030a7c60a.zip |
TITANIC: Add missing break lines to switch statements
Thanks to bgK for providing a gcc output
Diffstat (limited to 'engines/titanic/npcs')
-rw-r--r-- | engines/titanic/npcs/deskbot.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/titanic/npcs/deskbot.cpp b/engines/titanic/npcs/deskbot.cpp index 2b88160e47..dd3c9727de 100644 --- a/engines/titanic/npcs/deskbot.cpp +++ b/engines/titanic/npcs/deskbot.cpp @@ -287,6 +287,7 @@ bool CDeskbot::TrueTalkNotifySpeechEndedMsg(CTrueTalkNotifySpeechEndedMsg *msg) case 41789: _npcFlags |= NPCFLAG_MOVE_FINISH; turnOff.execute(this); + break; case 41686: _npcFlags |= NPCFLAG_MOVE_LEFT; |