Stop passing the engine state to SciGuiWindowMgr

svn-id: r44933
This commit is contained in:
Filippos Karapetis 2009-10-11 16:15:42 +00:00
parent 0da0d5b6a4
commit 1d2031defd
3 changed files with 4 additions and 5 deletions

View file

@ -53,7 +53,7 @@ SciGui::SciGui(EngineState *state, SciGuiScreen *screen, SciGuiPalette *palette,
: _s(state), _screen(screen), _palette(palette), _cursor(cursor) {
_gfx = new SciGuiGfx(_s, _screen, _palette);
_windowMgr = new SciGuiWindowMgr(_s, _screen, _gfx);
_windowMgr = new SciGuiWindowMgr(_screen, _gfx);
// _gui32 = new SciGui32(_s, _screen, _palette, _cursor); // for debug purposes
}