diff options
author | Torbjörn Andersson | 2007-02-12 00:04:56 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2007-02-12 00:04:56 +0000 |
commit | 3bc06610659079e9320e4a0835af103a2fab11a5 (patch) | |
tree | d2694b3fc19f21cc038a5170f2801386c7307073 /engines/agi | |
parent | 59eaade15df179df46bd28b4838887f5636ea3d9 (diff) | |
download | scummvm-rg350-3bc06610659079e9320e4a0835af103a2fab11a5.tar.gz scummvm-rg350-3bc06610659079e9320e4a0835af103a2fab11a5.tar.bz2 scummvm-rg350-3bc06610659079e9320e4a0835af103a2fab11a5.zip |
Merged the "palette manager" into the cursor manager. It was only used to
manage *cursor* palettes, so the name was misleading.
svn-id: r25500
Diffstat (limited to 'engines/agi')
-rw-r--r-- | engines/agi/graphics.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/agi/graphics.cpp b/engines/agi/graphics.cpp index be2ddeebab..9ca53b3a74 100644 --- a/engines/agi/graphics.cpp +++ b/engines/agi/graphics.cpp @@ -25,7 +25,6 @@ #include "common/stdafx.h" #include "graphics/cursorman.h" -#include "graphics/paletteman.h" #include "agi/agi.h" #include "agi/graphics.h" @@ -441,7 +440,7 @@ int GfxMgr::initVideo() { 255, 255, 255, 0 }; - PaletteMan.replaceCursorPalette(cursorPalette, 0, 3); + CursorMan.replaceCursorPalette(cursorPalette, 0, 3); CursorMan.replaceCursor(mouseCursor, 16, 16, 1, 1); return errOK; |