mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
616 B

  1. --- ./gens/linux/g_main.cpp 2006-08-15 13:35:30.000000000 +0200
  2. +++ ./gens/linux/g_main.cpp 2006-08-15 13:35:33.000000000 +0200
  3. @@ -788,11 +788,11 @@
  4. if (event.jaxis.value < -500)
  5. {
  6. - joystate[0x100 * event.jaxis.which + (event.jaxis.axis == 0) ? 0x3:0x1] = 1;
  7. + joystate[0x100 * event.jaxis.which + (event.jaxis.axis == 0 ? 0x3 : 0x1)] = 1;
  8. }
  9. if (event.jaxis.value > 500)
  10. {
  11. - joystate[0x100 * event.jaxis.which + (event.jaxis.axis == 0) ? 0x4:0x2] = 1;
  12. + joystate[0x100 * event.jaxis.which + (event.jaxis.axis == 0 ? 0x4 : 0x2)] = 1;
  13. }
  14. if (event.jaxis.value == 0)
  15. {