aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorColin Snover2016-08-19 11:53:04 -0500
committerColin Snover2016-08-19 15:23:10 -0500
commitda62a99a00c625886b1a3297387f1c164ce23861 (patch)
tree847847c07db3f02e7f4f2a64b48899a176210b79 /engines/sci/sci.cpp
parentdc093742b3d92868019e2c826dbce5151ee4e48b (diff)
downloadscummvm-rg350-da62a99a00c625886b1a3297387f1c164ce23861.tar.gz
scummvm-rg350-da62a99a00c625886b1a3297387f1c164ce23861.tar.bz2
scummvm-rg350-da62a99a00c625886b1a3297387f1c164ce23861.zip
SCI32: Remove unused ResourceManager 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 cb825389b2..6c51060296 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -736,7 +736,7 @@ void SciEngine::initGraphics() {
_gfxCompare = new GfxCompare(_gamestate->_segMan, _gfxCache, nullptr, _gfxCoordAdjuster);
_gfxPaint32 = new GfxPaint32(_gamestate->_segMan);
_gfxTransitions32 = new GfxTransitions32(_gamestate->_segMan);
- _gfxFrameout = new GfxFrameout(_gamestate->_segMan, _resMan, _gfxPalette32, _gfxTransitions32, _gfxCursor32);
+ _gfxFrameout = new GfxFrameout(_gamestate->_segMan, _gfxPalette32, _gfxTransitions32, _gfxCursor32);
_gfxCursor32->init(_gfxFrameout->getCurrentBuffer());
_gfxText32 = new GfxText32(_gamestate->_segMan, _gfxCache);
_gfxControls32 = new GfxControls32(_gamestate->_segMan, _gfxCache, _gfxText32);