[Scummvm-cvs-logs] CVS: scummvm/gui newgui.cpp,1.17,1.18
Max Horn
fingolfin at users.sourceforge.net
Sat Sep 28 08:59:02 CEST 2002
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm scumm.h,1.30,1.31 scummvm.cpp,1.39,1.40
- Next message: [Scummvm-cvs-logs] CVS: scummvm/backends/sdl sdl-common.cpp,1.7,1.8 sdl-common.h,1.4,1.5 sdl.cpp,1.7,1.8 sdl_gl.cpp,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/gui
In directory usw-pr-cvs1:/tmp/cvs-serv30085/gui
Modified Files:
newgui.cpp
Log Message:
changed the crosshair curso to match the Scumm one (I hope?)
Index: newgui.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/newgui.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- newgui.cpp 27 Sep 2002 13:06:58 -0000 1.17
+++ newgui.cpp 28 Sep 2002 15:58:25 -0000 1.18
@@ -458,14 +458,14 @@
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;
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm scumm.h,1.30,1.31 scummvm.cpp,1.39,1.40
- Next message: [Scummvm-cvs-logs] CVS: scummvm/backends/sdl sdl-common.cpp,1.7,1.8 sdl-common.h,1.4,1.5 sdl.cpp,1.7,1.8 sdl_gl.cpp,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list