Fixed detecting the NVIDIA controller which shows up as both a mouse and a game controller

main
Sam Lantinga 2015-04-01 19:18:56 -07:00
parent 41961e4f31
commit 3e4a8ce1c2
1 changed files with 13 additions and 11 deletions

View File

@ -350,7 +350,9 @@ guess_device_class(struct udev_device *dev)
devclass |= SDL_UDEV_DEVICE_MOUSE; /* ID_INPUT_MOUSE */
} else if (test_bit(BTN_TOUCH, bitmask_key)) {
; /* ID_INPUT_TOUCHSCREEN */
} else if (test_bit(BTN_TRIGGER, bitmask_key) ||
}
if (test_bit(BTN_TRIGGER, bitmask_key) ||
test_bit(BTN_A, bitmask_key) ||
test_bit(BTN_1, bitmask_key) ||
test_bit(ABS_RX, bitmask_abs) ||