aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/paint16.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-15 12:21:26 +0000
committerMartin Kiewitz2010-06-15 12:21:26 +0000
commitdb4533533a4e6676a834a5c036a088cdcb04de5f (patch)
treeb0138e95b4dee396dd671a1e8dff869445467ca4 /engines/sci/graphics/paint16.h
parent703f0ca29c8f1915b5fae13decb6ccde110adada (diff)
downloadscummvm-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/paint16.h')
-rw-r--r--engines/sci/graphics/paint16.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/graphics/paint16.h b/engines/sci/graphics/paint16.h
index 7a1a3bd7eb..3b2ffd6fc2 100644
--- a/engines/sci/graphics/paint16.h
+++ b/engines/sci/graphics/paint16.h
@@ -45,7 +45,7 @@ class GfxView;
*/
class GfxPaint16 : public GfxPaint {
public:
- GfxPaint16(ResourceManager *resMan, SegManager *segMan, Kernel *kernel, SciGui *gui, GfxCache *cache, GfxPorts *ports, GfxCoordAdjuster *coordAdjuster, GfxScreen *screen, GfxPalette *palette, GfxTransitions *transitions);
+ GfxPaint16(ResourceManager *resMan, SegManager *segMan, Kernel *kernel, SciGui *gui, GfxCache *cache, GfxPorts *ports, GfxCoordAdjuster *coordAdjuster, GfxScreen *screen, GfxPalette *palette, GfxTransitions *transitions, AudioPlayer *audio);
~GfxPaint16();
void init(GfxAnimate *animate, GfxText16 *text16);
@@ -99,6 +99,7 @@ private:
ResourceManager *_resMan;
SegManager *_segMan;
Kernel *_kernel;
+ AudioPlayer *_audio;
SciGui *_gui;
GfxAnimate *_animate;
GfxCache *_cache;