aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/picture.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-05 12:14:03 +0000
committerMartin Kiewitz2010-02-05 12:14:03 +0000
commit3ad4433adfd6c31b92d37d057ad677f9e971b836 (patch)
tree48572ac8372ecfa1792619dd3afbfcf1f55d8e44 /engines/sci/graphics/picture.h
parenta0e40a0675323b5d442fc369a1535a184bc8ae5d (diff)
downloadscummvm-rg350-3ad4433adfd6c31b92d37d057ad677f9e971b836.tar.gz
scummvm-rg350-3ad4433adfd6c31b92d37d057ad677f9e971b836.tar.bz2
scummvm-rg350-3ad4433adfd6c31b92d37d057ad677f9e971b836.zip
SCI: renamed SciGuiPicture to GfxPicture
svn-id: r47899
Diffstat (limited to 'engines/sci/graphics/picture.h')
-rw-r--r--engines/sci/graphics/picture.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sci/graphics/picture.h b/engines/sci/graphics/picture.h
index 85c2696533..f0e6cca690 100644
--- a/engines/sci/graphics/picture.h
+++ b/engines/sci/graphics/picture.h
@@ -33,13 +33,13 @@ namespace Sci {
#define SCI_PATTERN_CODE_PENSIZE 0x07
class GfxPorts;
-class Screen;
-class SciPalette;
+class GfxScreen;
+class GfxPalette;
-class SciGuiPicture {
+class GfxPicture {
public:
- SciGuiPicture(ResourceManager *resMan, GfxPorts *ports, GfxScreen *screen, GfxPalette *palette, GuiResourceId resourceId, bool EGAdrawingVisualize = false);
- ~SciGuiPicture();
+ GfxPicture(ResourceManager *resMan, GfxPorts *ports, GfxScreen *screen, GfxPalette *palette, GuiResourceId resourceId, bool EGAdrawingVisualize = false);
+ ~GfxPicture();
GuiResourceId getResourceId();
void draw(int16 animationNr, bool mirroredFlag, bool addToFlag, int16 EGApaletteNo);