diff options
author | Johannes Schickel | 2012-01-03 02:05:03 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-01-03 02:13:40 +0100 |
commit | 2af87fd4f02cff9f1d6b7140a8244c7c0b3ddd5a (patch) | |
tree | 516cb23077a9319492c2afa021106a9ecfa78139 /backends/vkeybd | |
parent | 1c2a21c42b9485000fd3a27c06f88d3eb1b38abc (diff) | |
download | scummvm-rg350-2af87fd4f02cff9f1d6b7140a8244c7c0b3ddd5a.tar.gz scummvm-rg350-2af87fd4f02cff9f1d6b7140a8244c7c0b3ddd5a.tar.bz2 scummvm-rg350-2af87fd4f02cff9f1d6b7140a8244c7c0b3ddd5a.zip |
VKEYBD: Fix cursor palette.
Diffstat (limited to 'backends/vkeybd')
-rw-r--r-- | backends/vkeybd/virtual-keyboard-gui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/vkeybd/virtual-keyboard-gui.cpp b/backends/vkeybd/virtual-keyboard-gui.cpp index 14a508a82e..42f9707ddc 100644 --- a/backends/vkeybd/virtual-keyboard-gui.cpp +++ b/backends/vkeybd/virtual-keyboard-gui.cpp @@ -435,10 +435,10 @@ void VirtualKeyboardGUI::updateDisplay() { void VirtualKeyboardGUI::setupCursor() { const byte palette[] = { - 255, 255, 255, 0, - 255, 255, 255, 0, - 171, 171, 171, 0, - 87, 87, 87, 0 + 255, 255, 255, + 255, 255, 255, + 171, 171, 171, + 87, 87, 87 }; CursorMan.pushCursorPalette(palette, 0, 4); |