aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sci.cpp')
-rw-r--r--engines/sci/sci.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 64c721cdb8..28bc003478 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -182,10 +182,7 @@ Common::Error SciEngine::run() {
_gamestate = new EngineState(_vocabulary, segMan);
- // Detect extended font used in multilingual games
- bool fontIsExtended = _resMan->detectFontExtended();
-
- _gamestate->_event = new SciEvent(fontIsExtended);
+ _gamestate->_event = new SciEvent(_resMan);
if (script_init_engine(_gamestate))
return Common::kUnknownError;
@@ -202,7 +199,7 @@ Common::Error SciEngine::run() {
} else {
#endif
_gfxPorts = new GfxPorts(segMan, screen);
- _gui = new SciGui(_gamestate, screen, palette, cache, cursor, _gfxPorts, _audio, fontIsExtended);
+ _gui = new SciGui(_gamestate, screen, palette, cache, cursor, _gfxPorts, _audio);
#ifdef ENABLE_SCI32
_gui32 = 0;
_gfxFrameout = 0;