aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/scriptdebug.cpp
diff options
context:
space:
mode:
authorMax Horn2009-03-24 17:41:26 +0000
committerMax Horn2009-03-24 17:41:26 +0000
commitd38590e6d4053939390ae5a853397f9574d9982e (patch)
tree30a1d0545929fa888891f6fb2d4a3f6d3db96e38 /engines/sci/engine/scriptdebug.cpp
parent3e2c1a39e2fd9ac613c3f7d14e152df0332b3908 (diff)
downloadscummvm-rg350-d38590e6d4053939390ae5a853397f9574d9982e.tar.gz
scummvm-rg350-d38590e6d4053939390ae5a853397f9574d9982e.tar.bz2
scummvm-rg350-d38590e6d4053939390ae5a853397f9574d9982e.zip
SCI: Turned synonyms list into a Common::List
svn-id: r39669
Diffstat (limited to 'engines/sci/engine/scriptdebug.cpp')
-rw-r--r--engines/sci/engine/scriptdebug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp
index a7d0abcd2a..35fc41fb31 100644
--- a/engines/sci/engine/scriptdebug.cpp
+++ b/engines/sci/engine/scriptdebug.cpp
@@ -1037,7 +1037,7 @@ int c_parse(EngineState *s) {
if (!words.empty()) {
int syntax_fail = 0;
- vocab_synonymize_tokens(words, s->synonyms, s->synonyms_nr);
+ vocab_synonymize_tokens(words, s->_synonyms);
sciprintf("Parsed to the following blocks:\n");