aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/state.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-01-31 15:07:36 +0000
committerMartin Kiewitz2010-01-31 15:07:36 +0000
commitc991a5bcebd9c46070e41361855969bed9754e57 (patch)
tree98d6fb4b0647d2198267946b325b1e018bda1539 /engines/sci/engine/state.h
parent6248362c38b97c40f0a71544381397657a2b041f (diff)
downloadscummvm-rg350-c991a5bcebd9c46070e41361855969bed9754e57.tar.gz
scummvm-rg350-c991a5bcebd9c46070e41361855969bed9754e57.tar.bz2
scummvm-rg350-c991a5bcebd9c46070e41361855969bed9754e57.zip
SCI: renamed SciGuiAnimate to GfxAnimate, moved code from SciGui into this class, now getting called directly
svn-id: r47751
Diffstat (limited to 'engines/sci/engine/state.h')
-rw-r--r--engines/sci/engine/state.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/sci/engine/state.h b/engines/sci/engine/state.h
index 31c46c4447..ad70669f7f 100644
--- a/engines/sci/engine/state.h
+++ b/engines/sci/engine/state.h
@@ -51,7 +51,9 @@ namespace Sci {
class SciEvent;
class Menubar;
+class GfxAnimate;
class GfxPorts;
+class Screen;
class SciGui;
class Cursor;
class MessageState;
@@ -148,7 +150,9 @@ public:
/* Non-VM information */
- GfxPorts *_gfxPorts; // Port managment for 16-bit gui
+ GfxAnimate *_gfxAnimate; // Animate for 16-bit gfx
+ GfxPorts *_gfxPorts; // Port managment for 16-bit gfx
+ Screen *_screen; // gfx screen
SciGui *_gui; /* Currently active Gui */
#ifdef ENABLE_SCI32