diff options
author | Martin Kiewitz | 2010-07-19 15:32:26 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-19 15:32:26 +0000 |
commit | 95ae668da0399c9cd89bb03d42bdea83eb8829f9 (patch) | |
tree | 4f559551204787bd8538df7c7f83776e00165f9a | |
parent | b7b904f9814ca0644a8fea1a3fb9250a4a4fbbd5 (diff) | |
download | scummvm-rg350-95ae668da0399c9cd89bb03d42bdea83eb8829f9.tar.gz scummvm-rg350-95ae668da0399c9cd89bb03d42bdea83eb8829f9.tar.bz2 scummvm-rg350-95ae668da0399c9cd89bb03d42bdea83eb8829f9.zip |
SCI: don't initialize vocabulary twice
svn-id: r51032
-rw-r--r-- | engines/sci/sci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index 4b467a7578..a39f1113a9 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -85,7 +85,7 @@ SciEngine::SciEngine(OSystem *syst, const ADGameDescription *desc, SciGameId gam _gamestate = 0; _kernel = 0; _vocabulary = 0; - _vocabularyLanguage = -1; + _vocabularyLanguage = 1; // we load english vocabulary on startup _eventMan = 0; _console = 0; |