| 256 | } |
| 257 | |
| 258 | void Xbox360ControllerClass::remapAxes(void *buffer) |
| 259 | { |
| 260 | XBOX360_IN_REPORT *report360 = (XBOX360_IN_REPORT*)buffer; |
| 261 | |
| 262 | XBOX360_HAT temp = report360->left; |
| 263 | report360->left = report360->right; |
| 264 | report360->right = temp; |
| 265 | } |
| 266 | |
| 267 | |
| 268 | #pragma mark - XboxOnePretend360Class |
nothing calls this directly
no outgoing calls
no test coverage detected