diff options
Diffstat (limited to 'libgamepad.h')
-rw-r--r-- | libgamepad.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgamepad.h b/libgamepad.h index 665e012..5b6c46c 100644 --- a/libgamepad.h +++ b/libgamepad.h @@ -190,22 +190,22 @@ struct libgamepad_device { * Bus type the device is connect via, see BUS_-prefixed * constants in <linux/input.h> */ - int bus_type; + unsigned int bus_type; /** * Vendor ID for the device (sub- or superdevice) */ - int vendor; + unsigned int vendor; /** * Product ID for the device (sub- or superdevice) */ - int product; + unsigned int product; /** * Product version ID for the device (sub- or superdevice) */ - int version; + unsigned int version; /** * FOR INTERNAL USE |