| 172 | // -------------------------------------------------------- |
| 173 | |
| 174 | struct XInputMap_Rumble { |
| 175 | constexpr XInputMap_Rumble(uint8_t rIndex, uint8_t bIndex) |
| 176 | : rxIndex(rIndex), bufferIndex(bIndex) {} |
| 177 | const uint8_t rxIndex; |
| 178 | const uint8_t bufferIndex; |
| 179 | }; |
| 180 | |
| 181 | static const XInputMap_Rumble RumbleLeft(3, 0); // Large motor |
| 182 | static const XInputMap_Rumble RumbleRight(4, 1); // Small motor |
nothing calls this directly
no outgoing calls
no test coverage detected