mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 14:51:40 +00:00
changed the crosshair curso to match the Scumm one (I hope?)
svn-id: r5028
This commit is contained in:
parent
a8d77fabee
commit
45877ea2dc
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user