| 318 | } |
| 319 | |
| 320 | void Wireless360Controller::remapAxes(void *buffer) |
| 321 | { |
| 322 | XBOX360_IN_REPORT *report360 = (XBOX360_IN_REPORT*)buffer; |
| 323 | |
| 324 | XBOX360_HAT temp = report360->left; |
| 325 | report360->left = report360->right; |
| 326 | report360->right = temp; |
| 327 | } |
| 328 | |
| 329 | void Wireless360Controller::receivedHIDupdate(unsigned char *data, int length) |
| 330 | { |
nothing calls this directly
no outgoing calls
no test coverage detected