Differences From Artifact [a18496dca4]:
- File
src/hid/OHGameControllerAxis.h
— part of check-in
[afae3291bf]
at
2024-06-03 19:39:51
on branch trunk
— ObjFWHID: Change prefix to OH
Let's leave 3 letter prefixes to 3rd parties. (user: js, size: 1164) [annotate] [blame] [check-ins using]
To Artifact [5d35977b0a]:
- File src/hid/OHGameControllerAxis.h — part of check-in [ddaa4f35d0] at 2024-06-17 00:37:04 on branch trunk — ObjFWHID: Make profiles implementation independent (user: js, size: 1256) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | * OHGameControllerAxis.h ObjFWHID/OHGameControllerAxis.h * * @brief An axis of a game controller. */ @interface OHGameControllerAxis: OHGameControllerElement { float _value; OF_RESERVE_IVARS(OHGameControllerButton, 4) } /** * @brief The value of the axis. */ @property (nonatomic) float value; | > > > | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | * OHGameControllerAxis.h ObjFWHID/OHGameControllerAxis.h * * @brief An axis of a game controller. */ @interface OHGameControllerAxis: OHGameControllerElement { float _value; #if defined(OF_LINUX) && defined(OF_HAVE_FILES) int32_t _minRawValue, _maxRawValue; #endif OF_RESERVE_IVARS(OHGameControllerButton, 4) } /** * @brief The value of the axis. */ @property (nonatomic) float value; |
︙ | ︙ |