diff options
author | strangerke | 2011-02-20 10:39:32 +0100 |
---|---|---|
committer | strangerke | 2011-02-20 10:39:32 +0100 |
commit | bb51d090a83c4c038050b8efe5ab98ff900974c2 (patch) | |
tree | 0883db9a61ed47b0b5e1bdab723ca0c5916d0854 /engines/hugo | |
parent | c9223b9b9b65242ed41906f960c5d2017a8e1ea5 (diff) | |
download | scummvm-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/hugo')
-rw-r--r-- | engines/hugo/display.cpp | 2 |
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); } /** |