diff options
| author | Martin Kiewitz | 2010-06-15 12:21:26 +0000 | 
|---|---|---|
| committer | Martin Kiewitz | 2010-06-15 12:21:26 +0000 | 
| commit | db4533533a4e6676a834a5c036a088cdcb04de5f (patch) | |
| tree | b0138e95b4dee396dd671a1e8dff869445467ca4 /engines/sci/graphics/gui.cpp | |
| parent | 703f0ca29c8f1915b5fae13decb6ccde110adada (diff) | |
| download | scummvm-rg350-db4533533a4e6676a834a5c036a088cdcb04de5f.tar.gz scummvm-rg350-db4533533a4e6676a834a5c036a088cdcb04de5f.tar.bz2 scummvm-rg350-db4533533a4e6676a834a5c036a088cdcb04de5f.zip | |
SCI: fix changes from r49806
svn-id: r49839
Diffstat (limited to 'engines/sci/graphics/gui.cpp')
| -rw-r--r-- | engines/sci/graphics/gui.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/sci/graphics/gui.cpp b/engines/sci/graphics/gui.cpp index 677359c201..468fbed776 100644 --- a/engines/sci/graphics/gui.cpp +++ b/engines/sci/graphics/gui.cpp @@ -62,7 +62,7 @@ SciGui::SciGui(EngineState *state, GfxScreen *screen, GfxPalette *palette, GfxCa  	_compare = new GfxCompare(_s->_segMan, g_sci->getKernel(), _cache, _screen, _coordAdjuster);  	g_sci->_gfxCompare = _compare;  	_transitions = new GfxTransitions(this, _screen, _palette, g_sci->getResMan()->isVGA()); -	_paint16 = new GfxPaint16(g_sci->getResMan(), _s->_segMan, g_sci->getKernel(), this, _cache, _ports, _coordAdjuster, _screen, _palette, _transitions); +	_paint16 = new GfxPaint16(g_sci->getResMan(), _s->_segMan, g_sci->getKernel(), this, _cache, _ports, _coordAdjuster, _screen, _palette, _transitions, _audio);  	g_sci->_gfxPaint = _paint16;  	g_sci->_gfxPaint16 = _paint16;  	_animate = new GfxAnimate(_s, _cache, _ports, _paint16, _screen, _palette, _cursor, _transitions); | 
