aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2002-09-28 15:58:25 +0000
committerMax Horn2002-09-28 15:58:25 +0000
commit45877ea2dce71ecde2d11e71827eae891d91e203 (patch)
tree6aeff63e11cdc9f5a602b5d151993545966d26b3 /gui
parenta8d77fabee4e32e6d964942e17ad10587ea461e5 (diff)
downloadscummvm-rg350-45877ea2dce71ecde2d11e71827eae891d91e203.tar.gz
scummvm-rg350-45877ea2dce71ecde2d11e71827eae891d91e203.tar.bz2
scummvm-rg350-45877ea2dce71ecde2d11e71827eae891d91e203.zip
changed the crosshair curso to match the Scumm one (I hope?)
svn-id: r5028
Diffstat (limited to 'gui')
-rw-r--r--gui/newgui.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index 7c82a20430..15a4ef1afd 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -458,14 +458,14 @@ void NewGui::animateCursor()
const byte color = colors[_cursorAnimateCounter];
int i;
- for (i = 0; i < 16; i++) {
- if ((i < 7) || (i > 9)) {
- _cursor[16 * 8 + i] = color;
- _cursor[16 * i + 8] = color;
+ for (i = 0; i < 15; i++) {
+ if ((i < 6) || (i > 8)) {
+ _cursor[16 * 7 + i] = color;
+ _cursor[16 * i + 7] = color;
}
}
- _system->set_mouse_cursor(_cursor, 16, 16, 8, 8);
+ _system->set_mouse_cursor(_cursor, 16, 16, 7, 7);
_cursorAnimateTimer = time;
_cursorAnimateCounter = (_cursorAnimateCounter + 1) % 4;