aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_npc_script.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-06-11 21:21:12 -0400
committerPaul Gilbert2016-07-15 19:23:28 -0400
commita5e6d1e345872cfec5101912db50514b74cf4e38 (patch)
treefe54ed47c720a8d51793845874fa254591e57341 /engines/titanic/true_talk/tt_npc_script.cpp
parent314a8f25ab8ea8600962af8c82356a728ff3b977 (diff)
downloadscummvm-rg350-a5e6d1e345872cfec5101912db50514b74cf4e38.tar.gz
scummvm-rg350-a5e6d1e345872cfec5101912db50514b74cf4e38.tar.bz2
scummvm-rg350-a5e6d1e345872cfec5101912db50514b74cf4e38.zip
TITANIC: Remove deprecated NPC methods for data now loaded from DAT file
Diffstat (limited to 'engines/titanic/true_talk/tt_npc_script.cpp')
-rw-r--r--engines/titanic/true_talk/tt_npc_script.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/engines/titanic/true_talk/tt_npc_script.cpp b/engines/titanic/true_talk/tt_npc_script.cpp
index 2bfef608dd..0de460cce3 100644
--- a/engines/titanic/true_talk/tt_npc_script.cpp
+++ b/engines/titanic/true_talk/tt_npc_script.cpp
@@ -267,18 +267,6 @@ int TTnpcScript::proc12() const {
return 1;
}
-bool TTnpcScript::loadQuotes() {
- // Original did a load of a global quotes here the first time
- // this method is called. ScummVM implementation has refactored
- // the loading to the CTrueTalkManager constructor
-
- if (!proc18()) {
- return false;
- } else {
- return proc17();
- }
-}
-
void TTnpcScript::selectResponse(int id) {
if (id >= 200000 && id <= 290264)
id = getDialogueId(id);
@@ -295,14 +283,6 @@ bool TTnpcScript::handleQuote(TTroomScript *roomScript, TTsentence *sentence,
return true;
}
-bool TTnpcScript::proc17() const {
- return true;
-}
-
-bool TTnpcScript::proc18() const {
- return true;
-}
-
uint TTnpcScript::getRangeValue(uint id) {
TTscriptRange *range = findRange(id);
if (!range)