diff options
Diffstat (limited to 'engines/sci/graphics/animate.h')
-rw-r--r-- | engines/sci/graphics/animate.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sci/graphics/animate.h b/engines/sci/graphics/animate.h index f68e0123ea..37dbb7081a 100644 --- a/engines/sci/graphics/animate.h +++ b/engines/sci/graphics/animate.h @@ -77,12 +77,12 @@ typedef Common::List<AnimateEntry *> AnimateList; class GfxCache; class GfxPorts; class GfxPaint16; -class Screen; -class SciPalette; -class Transitions; +class GfxScreen; +class GfxPalette; +class GfxTransitions; class GfxAnimate { public: - GfxAnimate(EngineState *state, GfxCache *cache, GfxPorts *ports, GfxPaint16 *paint16, GfxScreen *screen, GfxPalette *palette, Cursor *cursor, Transitions *transitions); + GfxAnimate(EngineState *state, GfxCache *cache, GfxPorts *ports, GfxPaint16 *paint16, GfxScreen *screen, GfxPalette *palette, Cursor *cursor, GfxTransitions *transitions); virtual ~GfxAnimate(); // FIXME: Don't store EngineState @@ -119,7 +119,7 @@ private: GfxScreen *_screen; GfxPalette *_palette; Cursor *_cursor; - Transitions *_transitions; + GfxTransitions *_transitions; uint16 _listCount; AnimateEntry *_listData; |