[MPlayer-cvslog] CVS: main/input joystick.c,1.8,1.9
Richard Felker CVS
syncmail at mplayerhq.hu
Fri Mar 31 06:56:11 CEST 2006
- Previous message: [MPlayer-cvslog] CVS: main/libmpcodecs ad_libdv.c, 1.2, 1.3 vd_dmo.c, 1.3, 1.4 vd_dshow.c, 1.10, 1.11 vd_ffmpeg.c, 1.161, 1.162 vd_vfw.c, 1.29, 1.30 ve_lavc.c, 1.137, 1.138 ve_raw.c, 1.8, 1.9 ve_vfw.c, 1.23, 1.24 vf.c, 1.125, 1.126 vf_crop.c, 1.19, 1.20 vf_cropdetect.c, 1.14, 1.15 vf_expand.c, 1.35, 1.36 vf_fame.c, 1.13, 1.14 vf_format.c, 1.13, 1.14 vf_framestep.c, 1.3, 1.4 vf_noformat.c, 1.3, 1.4 vf_palette.c, 1.14, 1.15 vf_phase.c, 1.6, 1.7 vf_test.c, 1.9, 1.10 vf_tile.c, 1.4, 1.5 vf_yuy2.c, 1.10, 1.11 vf_yvu9.c, 1.8, 1.9
- Next message: [MPlayer-cvslog] CVS: main/input joystick.c,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Richard Felker CVS
Update of /cvsroot/mplayer/main/input
In directory mail:/var2/tmp/cvs-serv15835/input
Modified Files:
joystick.c
Log Message:
prevent overflow.. wtf?! from irc:
<@tcsetattr> how many dimensions can people have in a joystick? do you
travel to other universes with that thing?
[apparently more than 10...?!]
(reported on irc by DrewZzz)
Index: joystick.c
===================================================================
RCS file: /cvsroot/mplayer/main/input/joystick.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- joystick.c 25 Oct 2005 21:23:45 -0000 1.8
+++ joystick.c 31 Mar 2006 04:56:09 -0000 1.9
@@ -30,7 +30,7 @@
#include <linux/joystick.h>
-int axis[10];
+int axis[256];
int btns = 0;
int mp_input_joystick_init(char* dev) {
- Previous message: [MPlayer-cvslog] CVS: main/libmpcodecs ad_libdv.c, 1.2, 1.3 vd_dmo.c, 1.3, 1.4 vd_dshow.c, 1.10, 1.11 vd_ffmpeg.c, 1.161, 1.162 vd_vfw.c, 1.29, 1.30 ve_lavc.c, 1.137, 1.138 ve_raw.c, 1.8, 1.9 ve_vfw.c, 1.23, 1.24 vf.c, 1.125, 1.126 vf_crop.c, 1.19, 1.20 vf_cropdetect.c, 1.14, 1.15 vf_expand.c, 1.35, 1.36 vf_fame.c, 1.13, 1.14 vf_format.c, 1.13, 1.14 vf_framestep.c, 1.3, 1.4 vf_noformat.c, 1.3, 1.4 vf_palette.c, 1.14, 1.15 vf_phase.c, 1.6, 1.7 vf_test.c, 1.9, 1.10 vf_tile.c, 1.4, 1.5 vf_yuy2.c, 1.10, 1.11 vf_yvu9.c, 1.8, 1.9
- Next message: [MPlayer-cvslog] CVS: main/input joystick.c,1.8,1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list