aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorstrangerke2011-02-20 10:39:32 +0100
committerstrangerke2011-02-20 10:39:32 +0100
commitbb51d090a83c4c038050b8efe5ab98ff900974c2 (patch)
tree0883db9a61ed47b0b5e1bdab723ca0c5916d0854 /engines
parentc9223b9b9b65242ed41906f960c5d2017a8e1ea5 (diff)
downloadscummvm-rg350-bb51d090a83c4c038050b8efe5ab98ff900974c2.tar.gz
scummvm-rg350-bb51d090a83c4c038050b8efe5ab98ff900974c2.tar.bz2
scummvm-rg350-bb51d090a83c4c038050b8efe5ab98ff900974c2.zip
HUGO: Fix a bug in setCursorPal() introduced by recent palette modifications
Diffstat (limited to 'engines')
-rw-r--r--engines/hugo/display.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp
index a2962ff354..da821c5d3a 100644
--- a/engines/hugo/display.cpp
+++ b/engines/hugo/display.cpp
@@ -149,7 +149,7 @@ void Screen::setCursorPal() {
pal[3 * i + 2] = _curPalette[4 * i + 2];
}
- CursorMan.replaceCursorPalette(_curPalette, 0, _paletteSize / 4);
+ CursorMan.replaceCursorPalette(pal, 0, _paletteSize / 4);
}
/**