diff options
author | Filippos Karapetis | 2009-10-06 17:09:34 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-10-06 17:09:34 +0000 |
commit | 0b47085da0d287ff14b9d0299bfe18cdf6dd469e (patch) | |
tree | e1d602dc00b4175cb97af83b04a7fff366ee6762 /engines/sci/gui/gui.cpp | |
parent | f664dcdee8946946544205764b8c9a7610c89715 (diff) | |
download | scummvm-rg350-0b47085da0d287ff14b9d0299bfe18cdf6dd469e.tar.gz scummvm-rg350-0b47085da0d287ff14b9d0299bfe18cdf6dd469e.tar.bz2 scummvm-rg350-0b47085da0d287ff14b9d0299bfe18cdf6dd469e.zip |
Removed an unused reference to OSystem
svn-id: r44704
Diffstat (limited to 'engines/sci/gui/gui.cpp')
-rw-r--r-- | engines/sci/gui/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index acb04cf428..c7d2a757d3 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -45,7 +45,7 @@ SciGui::SciGui(OSystem *system, EngineState *state, SciGuiScreen *screen) _picNotValid = 0; _sysTicks = 0; - _palette = new SciGuiPalette(_system, _s, this, _screen); + _palette = new SciGuiPalette(_s, this, _screen); _gfx = new SciGuiGfx(_system, _s, _screen, _palette); _windowMgr = new SciGuiWindowMgr(_s, _gfx); } |