changed the crosshair curso to match the Scumm one (I hope?)

svn-id: r5028
This commit is contained in:
Max Horn 2002-09-28 15:58:25 +00:00
parent a8d77fabee
commit 45877ea2dc

View File

@ -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;