diff options
Diffstat (limited to 'engines/cine/gfx.cpp')
-rw-r--r-- | engines/cine/gfx.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/cine/gfx.cpp b/engines/cine/gfx.cpp index 46a7eb26d0..b5cdecd7de 100644 --- a/engines/cine/gfx.cpp +++ b/engines/cine/gfx.cpp @@ -28,7 +28,6 @@ #include "common/system.h" #include "graphics/cursorman.h" -#include "graphics/paletteman.h" namespace Cine { @@ -125,7 +124,7 @@ void setMouseCursor(int cursor) { ++src; } CursorMan.replaceCursor(mouseCursor, 16, 16, mc->hotspotX, mc->hotspotY); - PaletteMan.replaceCursorPalette(cursorPalette, 0, 2); + CursorMan.replaceCursorPalette(cursorPalette, 0, 2); currentMouseCursor = cursor; } } |