aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui/gui_windowmgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/gui/gui_windowmgr.h')
-rw-r--r--engines/sci/gui/gui_windowmgr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/gui/gui_windowmgr.h b/engines/sci/gui/gui_windowmgr.h
index c7c9ebfd91..05ad45f718 100644
--- a/engines/sci/gui/gui_windowmgr.h
+++ b/engines/sci/gui/gui_windowmgr.h
@@ -33,7 +33,7 @@ namespace Sci {
class SciGuiWindowMgr {
public:
- SciGuiWindowMgr(EngineState *state, SciGuiGfx *gfx);
+ SciGuiWindowMgr(EngineState *state, SciGuiScreen *screen, SciGuiGfx *gfx);
~SciGuiWindowMgr();
int16 isFrontWindow(GuiWindow *wnd);
@@ -53,6 +53,7 @@ private:
typedef Common::List<GuiPort *> PortList;
EngineState *_s;
+ SciGuiScreen *_screen;
SciGuiGfx *_gfx;
/** The list of open 'windows' (and ports), in visual order. */