aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2011-10-30 12:12:40 +0200
committerFilippos Karapetis2011-10-30 21:42:33 +0200
commit9caacac724fa8b83b1949389bdeeba1ecb7fec6e (patch)
tree8d2b9aa48106f267734f4b92cbc20a7f6811328f /engines/sci/sci.cpp
parentacebd6d0be60c25c4e7b157f3dc04afe5fcbb535 (diff)
downloadscummvm-rg350-9caacac724fa8b83b1949389bdeeba1ecb7fec6e.tar.gz
scummvm-rg350-9caacac724fa8b83b1949389bdeeba1ecb7fec6e.tar.bz2
scummvm-rg350-9caacac724fa8b83b1949389bdeeba1ecb7fec6e.zip
SCI: More work on kEditText
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 51b50ebe20..6eeed66e4f 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -626,7 +626,7 @@ void SciEngine::initGraphics() {
_gfxPaint32 = new GfxPaint32(_resMan, _gamestate->_segMan, _kernel, _gfxCoordAdjuster, _gfxCache, _gfxScreen, _gfxPalette);
_gfxPaint = _gfxPaint32;
_gfxText32 = new GfxText32(_gamestate->_segMan, _gfxCache, _gfxScreen);
- _gfxControls32 = new GfxControls32(_gamestate->_segMan, _gfxCache, _gfxScreen);
+ _gfxControls32 = new GfxControls32(_gamestate->_segMan, _gfxCache, _gfxScreen, _gfxText32);
_robotDecoder = new RobotDecoder(g_system->getMixer(), getPlatform() == Common::kPlatformMacintosh);
_gfxFrameout = new GfxFrameout(_gamestate->_segMan, _resMan, _gfxCoordAdjuster, _gfxCache, _gfxScreen, _gfxPalette, _gfxPaint32);
} else {