diff options
| author | Martin Kiewitz | 2010-05-24 21:47:06 +0000 |
|---|---|---|
| committer | Martin Kiewitz | 2010-05-24 21:47:06 +0000 |
| commit | 830d17ed318d62a01aa1ec24ec79a7439586eb5e (patch) | |
| tree | 934031cd59304798a9e528d24c205e617fd38bdb /engines/sci/sci.cpp | |
| parent | d4ae096a633182c1a6a85061909c26a33a929460 (diff) | |
| download | scummvm-rg350-830d17ed318d62a01aa1ec24ec79a7439586eb5e.tar.gz scummvm-rg350-830d17ed318d62a01aa1ec24ec79a7439586eb5e.tar.bz2 scummvm-rg350-830d17ed318d62a01aa1ec24ec79a7439586eb5e.zip | |
SCI: renaming MacIconBar to GfxMacIconBar
svn-id: r49202
Diffstat (limited to 'engines/sci/sci.cpp')
| -rw-r--r-- | engines/sci/sci.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index 84747a2545..fc70dc7758 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -98,7 +98,7 @@ SciEngine::SciEngine(OSystem *syst, const ADGameDescription *desc) DebugMan.addDebugChannel(kDebugLevelOnStartup, "OnStartup", "Enter debugger at start of game"); _gamestate = 0; - _macIconBar = 0; + _gfxMacIconBar = 0; const Common::FSNode gameDataDir(ConfMan.get("path")); @@ -174,7 +174,7 @@ Common::Error SciEngine::run() { screen = new GfxScreen(_resMan, 320, 200, upscaledHires); if (_resMan->isSci11Mac() && getSciVersion() == SCI_VERSION_1_1) - _macIconBar = new MacIconBar(); + _gfxMacIconBar = new GfxMacIconBar(); GfxPalette *palette = new GfxPalette(_resMan, screen); GfxCache *cache = new GfxCache(_resMan, screen, palette); |
