aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/parser/vocabulary.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-12-07 00:47:05 +0000
committerFilippos Karapetis2010-12-07 00:47:05 +0000
commitde2ef2edc0ea277b4ea5db77a109199c18ff0dae (patch)
tree583d3d52482f25534487de0e8c38f2996dfef75d /engines/sci/parser/vocabulary.cpp
parent8ca0b867e0f5127cf192b7cb7a7c12216a9545a4 (diff)
downloadscummvm-rg350-de2ef2edc0ea277b4ea5db77a109199c18ff0dae.tar.gz
scummvm-rg350-de2ef2edc0ea277b4ea5db77a109199c18ff0dae.tar.bz2
scummvm-rg350-de2ef2edc0ea277b4ea5db77a109199c18ff0dae.zip
SCI: Removed the system strings code and replaced it with a much more simplified version, thus greatly simplifying handling of system strings
svn-id: r54805
Diffstat (limited to 'engines/sci/parser/vocabulary.cpp')
-rw-r--r--engines/sci/parser/vocabulary.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/parser/vocabulary.cpp b/engines/sci/parser/vocabulary.cpp
index b1f928cdd9..8d59df5d58 100644
--- a/engines/sci/parser/vocabulary.cpp
+++ b/engines/sci/parser/vocabulary.cpp
@@ -75,7 +75,6 @@ Vocabulary::Vocabulary(ResourceManager *resMan, bool foreign) : _resMan(resMan),
loadAltInputs();
- parser_base = NULL_REG;
parser_event = NULL_REG;
parserIsValid = false;
}
@@ -89,7 +88,6 @@ Vocabulary::~Vocabulary() {
void Vocabulary::reset() {
parserIsValid = false; // Invalidate parser
parser_event = NULL_REG; // Invalidate parser event
- parser_base = make_reg(g_sci->getEngineState()->_segMan->getSysStringsSegment(), SYS_STRING_PARSER_BASE);
}
bool Vocabulary::loadParserWords() {