aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-01 15:11:20 +0000
committerFilippos Karapetis2010-06-01 15:11:20 +0000
commit9c92bd1b810621bdaa779bd3354b10ad048c7924 (patch)
tree16a56f987b162ff3ca0f1f8ef0ec78e6a762f866 /engines/sci/sci.cpp
parente083c20da1aab0090a5fc3ea624c9810c63dad52 (diff)
downloadscummvm-rg350-9c92bd1b810621bdaa779bd3354b10ad048c7924.tar.gz
scummvm-rg350-9c92bd1b810621bdaa779bd3354b10ad048c7924.tar.bz2
scummvm-rg350-9c92bd1b810621bdaa779bd3354b10ad048c7924.zip
The parser vocabulary remains static throughout the game, thus it has been removed from the engine state
svn-id: r49373
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 31d473a0b5..1de42ab115 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -190,7 +190,7 @@ Common::Error SciEngine::run() {
_features = new GameFeatures(segMan, _kernel);
- _gamestate = new EngineState(_vocabulary, segMan);
+ _gamestate = new EngineState(segMan);
_gamestate->_event = new SciEvent(_resMan);