From: johann d. <jd...@us...> - 2001-10-27 14:44:19
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv23710/linux/include/linux Modified Files: input.h Log Message: Changed saturation values of interactive effects to unsigned values. Index: input.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/input.h,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- input.h 2001/10/06 14:46:03 1.53 +++ input.h 2001/10/27 14:44:17 1.54 @@ -543,8 +543,8 @@ */ __u16 axis; - __s16 right_saturation; /* Max level when joystick is on the right */ - __s16 left_saturation; /* Max level when joystick in on the left */ + __u16 right_saturation; /* Max level when joystick is on the right */ + __u16 left_saturation; /* Max level when joystick in on the left */ __s16 right_coeff; /* Indicates how fast the force grows when the joystick moves to the right */ |