aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorColin Snover2016-06-20 20:40:43 -0500
committerColin Snover2016-06-21 08:17:28 -0500
commit4495ae3de00bd808399a5e38cdd58fb5d40fef5d (patch)
treeb5aa25dc84fb3283ed1ee4a598e5dfff008c811b /engines/sci/sci.cpp
parenta3055d3f491d77f5581b887179e204e5ce858f70 (diff)
downloadscummvm-rg350-4495ae3de00bd808399a5e38cdd58fb5d40fef5d.tar.gz
scummvm-rg350-4495ae3de00bd808399a5e38cdd58fb5d40fef5d.tar.bz2
scummvm-rg350-4495ae3de00bd808399a5e38cdd58fb5d40fef5d.zip
SCI32: Remove unused dependencies from GfxFrameout
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 c0f8f215ad..e650b4ba7e 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -720,7 +720,7 @@ void SciEngine::initGraphics() {
_gfxCompare = new GfxCompare(_gamestate->_segMan, _gfxCache, _gfxScreen, _gfxCoordAdjuster);
_gfxPaint32 = new GfxPaint32(_gamestate->_segMan);
_robotDecoder = new RobotDecoder(getPlatform() == Common::kPlatformMacintosh);
- _gfxFrameout = new GfxFrameout(_gamestate->_segMan, _resMan, _gfxCoordAdjuster, _gfxCache, _gfxScreen, _gfxPalette32, _gfxPaint32);
+ _gfxFrameout = new GfxFrameout(_gamestate->_segMan, _resMan, _gfxCoordAdjuster, _gfxScreen, _gfxPalette32);
_gfxText32 = new GfxText32(_gamestate->_segMan, _gfxCache);
_gfxControls32 = new GfxControls32(_gamestate->_segMan, _gfxCache, _gfxText32);
_gfxFrameout->run();