aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/frameout.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/frameout.h')
-rw-r--r--engines/sci/graphics/frameout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/graphics/frameout.h b/engines/sci/graphics/frameout.h
index ce2e9bcf19..34dfc26545 100644
--- a/engines/sci/graphics/frameout.h
+++ b/engines/sci/graphics/frameout.h
@@ -44,11 +44,10 @@ struct FrameoutEntry {
typedef Common::List<FrameoutEntry *> FrameoutList;
class GfxCache;
-class Screen;
-class SciPalette;
+class GfxPaint32;
class GfxFrameout {
public:
- GfxFrameout(SegManager *segMan, ResourceManager *resMan, GfxCache *cache, GfxScreen *screen, GfxPalette *palette);
+ GfxFrameout(SegManager *segMan, ResourceManager *resMan, GfxCache *cache, GfxScreen *screen, GfxPalette *palette, GfxPaint32 *paint32);
~GfxFrameout();
void kernelAddPlane(reg_t object);
@@ -65,6 +64,7 @@ private:
GfxCache *_cache;
GfxPalette *_palette;
GfxScreen *_screen;
+ GfxPaint32 *_paint32;
Common::Array<reg_t> _screenItems;
Common::Array<reg_t> _planes;