aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/paint16.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-04 21:04:47 +0000
committerMartin Kiewitz2010-02-04 21:04:47 +0000
commitc336204a3f324d1bb78287967e5c1d36f6473f7c (patch)
treeab9572139ae95230806d78ec01632f251adb80f0 /engines/sci/graphics/paint16.h
parent5f39e3b7b544e94d9cdee80d7067006970a16f13 (diff)
downloadscummvm-rg350-c336204a3f324d1bb78287967e5c1d36f6473f7c.tar.gz
scummvm-rg350-c336204a3f324d1bb78287967e5c1d36f6473f7c.tar.bz2
scummvm-rg350-c336204a3f324d1bb78287967e5c1d36f6473f7c.zip
SCI: renaming Transitions to GfxTransitions
svn-id: r47890
Diffstat (limited to 'engines/sci/graphics/paint16.h')
-rw-r--r--engines/sci/graphics/paint16.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/graphics/paint16.h b/engines/sci/graphics/paint16.h
index b04bd330df..25ddc2e246 100644
--- a/engines/sci/graphics/paint16.h
+++ b/engines/sci/graphics/paint16.h
@@ -34,15 +34,15 @@
namespace Sci {
class GfxPorts;
-class Screen;
-class SciPalette;
+class GfxScreen;
+class GfxPalette;
class Font;
class SciGuiPicture;
class View;
class GfxPaint16 : public GfxPaint {
public:
- GfxPaint16(ResourceManager *resMan, SegManager *segMan, Kernel *kernel, GfxCache *cache, GfxPorts *ports, GfxScreen *screen, GfxPalette *palette, Transitions *transitions);
+ GfxPaint16(ResourceManager *resMan, SegManager *segMan, Kernel *kernel, GfxCache *cache, GfxPorts *ports, GfxScreen *screen, GfxPalette *palette, GfxTransitions *transitions);
~GfxPaint16();
void init(GfxText16 *text16);
@@ -91,7 +91,7 @@ private:
GfxScreen *_screen;
GfxPalette *_palette;
GfxText16 *_text16;
- Transitions *_transitions;
+ GfxTransitions *_transitions;
// true means make EGA picture drawing visible
bool _EGAdrawingVisualize;