aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2012-07-22 23:17:36 -0400
committerMatthew Hoops2012-07-22 23:17:36 -0400
commitd4231fda1cb2399e123054ddaaeca2b4c2749966 (patch)
treea87675430acb1db2310c296e5548187d2534db08 /engines/sci/sci.cpp
parent0f0c6f935443212d76422959d040b87fc78d02c7 (diff)
downloadscummvm-rg350-d4231fda1cb2399e123054ddaaeca2b4c2749966.tar.gz
scummvm-rg350-d4231fda1cb2399e123054ddaaeca2b4c2749966.tar.bz2
scummvm-rg350-d4231fda1cb2399e123054ddaaeca2b4c2749966.zip
SCI: Rewrite RobotDecoder to use the AdvancedVideoDecoder API
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 d43a9d06fc..42ae00b525 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -632,7 +632,7 @@ void SciEngine::initGraphics() {
_gfxPaint = _gfxPaint32;
_gfxText32 = new GfxText32(_gamestate->_segMan, _gfxCache, _gfxScreen);
_gfxControls32 = new GfxControls32(_gamestate->_segMan, _gfxCache, _gfxScreen, _gfxText32);
- _robotDecoder = new RobotDecoder(g_system->getMixer(), getPlatform() == Common::kPlatformMacintosh);
+ _robotDecoder = new RobotDecoder(getPlatform() == Common::kPlatformMacintosh);
_gfxFrameout = new GfxFrameout(_gamestate->_segMan, _resMan, _gfxCoordAdjuster, _gfxCache, _gfxScreen, _gfxPalette, _gfxPaint32);
} else {
#endif