aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/bellbot_script.cpp
diff options
context:
space:
mode:
authorD G Turner2019-11-30 23:50:44 +0000
committerD G Turner2019-11-30 23:50:44 +0000
commitc2149c042e03930fea0eaed252a630ca63ec6af6 (patch)
tree15f2f3c6135bbb30b491967145a690d66ad59b94 /engines/titanic/true_talk/bellbot_script.cpp
parentb25c4b21fdd6f911b94fb411087078ecf756691e (diff)
downloadscummvm-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/true_talk/bellbot_script.cpp')
-rw-r--r--engines/titanic/true_talk/bellbot_script.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/titanic/true_talk/bellbot_script.cpp b/engines/titanic/true_talk/bellbot_script.cpp
index 46c57750f8..561cbd2595 100644
--- a/engines/titanic/true_talk/bellbot_script.cpp
+++ b/engines/titanic/true_talk/bellbot_script.cpp
@@ -156,6 +156,9 @@ int BellbotScript::process(const TTroomScript *roomScript, const TTsentence *sen
result = processEntries(&_sentences[getValue(6) ? 5 : 4], 0, roomScript, sentence);
}
break;
+
+ default:
+ break;
}
if (result == 2)