diff options
author | Johannes Schickel | 2010-04-11 17:28:34 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-04-11 17:28:34 +0000 |
commit | 19e620ba60cf08b8d039dff3777061da1a0b21b8 (patch) | |
tree | 831427a9f736ae737c11aa22ade571124f43be9b | |
parent | 175a81ce98d618b07cacd2b1298365d3aaa7a3c4 (diff) | |
download | scummvm-rg350-19e620ba60cf08b8d039dff3777061da1a0b21b8.tar.gz scummvm-rg350-19e620ba60cf08b8d039dff3777061da1a0b21b8.tar.bz2 scummvm-rg350-19e620ba60cf08b8d039dff3777061da1a0b21b8.zip |
Enable the cursor palette in ScummEngine_v70he::setDefaultCursor just to avoid problems in case it was disabled earlier.
svn-id: r48622
-rw-r--r-- | engines/scumm/cursor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/scumm/cursor.cpp b/engines/scumm/cursor.cpp index 5b210f9af6..b1f8f2ae2b 100644 --- a/engines/scumm/cursor.cpp +++ b/engines/scumm/cursor.cpp @@ -222,6 +222,7 @@ void ScummEngine_v70he::setDefaultCursor() { if (_bytesPerPixel == 1) { // Since white color position is not guaranteed // we setup our own palette if supported by backend + CursorMan.disableCursorPalette(false); CursorMan.replaceCursorPalette(palette, 0xfd, 3); } |