| 533 | } |
| 534 | |
| 535 | int16_t XInputController::invertInput(int16_t val, const Range& range) { |
| 536 | return range.max - val + range.min; |
| 537 | } |
| 538 | |
| 539 | void XInputController::setTriggerRange(int32_t rangeMin, int32_t rangeMax) { |
| 540 | setRange(TRIGGER_LEFT, rangeMin, rangeMax); |
nothing calls this directly
no outgoing calls
no test coverage detected