aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/scicore/vocabulary.cpp
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-03-08 14:27:35 +0000
committerWillem Jan Palenstijn2009-03-08 14:27:35 +0000
commit52f3b24668b9b73f4df83ee20fd1151db6599ca4 (patch)
treeca107bd52c3c142e26019ffd730810f3b29db862 /engines/sci/scicore/vocabulary.cpp
parente5e9797d9ceae790a6f6a0b0e127bd47abfcc4c3 (diff)
downloadscummvm-rg350-52f3b24668b9b73f4df83ee20fd1151db6599ca4.tar.gz
scummvm-rg350-52f3b24668b9b73f4df83ee20fd1151db6599ca4.tar.bz2
scummvm-rg350-52f3b24668b9b73f4df83ee20fd1151db6599ca4.zip
Restore potentially useful info deleted in r39188
svn-id: r39228
Diffstat (limited to 'engines/sci/scicore/vocabulary.cpp')
-rw-r--r--engines/sci/scicore/vocabulary.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/engines/sci/scicore/vocabulary.cpp b/engines/sci/scicore/vocabulary.cpp
index 3acd189866..685ad36725 100644
--- a/engines/sci/scicore/vocabulary.cpp
+++ b/engines/sci/scicore/vocabulary.cpp
@@ -42,6 +42,27 @@ int vocab_version;
VOCAB_RESOURCE_SCI1_SUFFIX_VOCAB : \
VOCAB_RESOURCE_SCI0_SUFFIX_VOCAB
+
+/*
+// These strange names were taken from an SCI01 interpreter
+const char *class_names[] = {"",
+ "",
+ "conj", // conjunction
+ "ass", // ?
+ "pos", // preposition ?
+ "art", // article
+ "adj", // adjective
+ "pron", // pronoun
+ "noun", // noun
+ "auxv", // auxillary verb
+ "adv", // adverb
+ "verb", // verb
+ "",
+ "",
+ "",
+ ""
+ };
+*/
int _vocab_cmp_words(const void *word1, const void *word2) {
return scumm_stricmp((*((word_t **) word1))->word, (*((word_t **)word2))->word);
}