aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/state.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-01 09:53:42 +0000
committerMartin Kiewitz2010-02-01 09:53:42 +0000
commit845c245ff37fc5f269a26a6f57eb55e66b6f1530 (patch)
tree9dfd49dd69e8086aefc230d6a1e1c4135f13fee5 /engines/sci/engine/state.h
parentc72c2ff71109544ca48d2cfabf1ff735363795c3 (diff)
downloadscummvm-rg350-845c245ff37fc5f269a26a6f57eb55e66b6f1530.tar.gz
scummvm-rg350-845c245ff37fc5f269a26a6f57eb55e66b6f1530.tar.bz2
scummvm-rg350-845c245ff37fc5f269a26a6f57eb55e66b6f1530.zip
SCI: class menu renamed to GfxMenu - now getting called directly, also fix for loading savedgames
svn-id: r47792
Diffstat (limited to 'engines/sci/engine/state.h')
-rw-r--r--engines/sci/engine/state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/state.h b/engines/sci/engine/state.h
index 1acee49dba..98f072a645 100644
--- a/engines/sci/engine/state.h
+++ b/engines/sci/engine/state.h
@@ -50,10 +50,10 @@ namespace Common {
namespace Sci {
class SciEvent;
-class Menubar;
class GfxAnimate;
class GfxCache;
class GfxControls;
+class GfxMenu;
class GfxPalette;
class GfxPorts;
class GfxScreen;
@@ -160,6 +160,7 @@ public:
GfxAnimate *_gfxAnimate; // Animate for 16-bit gfx
GfxCache *_gfxCache;
GfxControls *_gfxControls; // Controls for 16-bit gfx
+ GfxMenu *_gfxMenu; // Menu for 16-bit gfx
GfxPalette *_gfxPalette;
GfxPorts *_gfxPorts; // Port managment for 16-bit gfx
GfxScreen *_gfxScreen;