| 71 | static void MapGamePad(Binding* binding, uint32_t gamepad_index, bool connected); |
| 72 | |
| 73 | static void MapGamePadCbk(void* binding, const uint32_t* gamepad_index, bool* connected) |
| 74 | { |
| 75 | MapGamePad((Binding*)binding, *gamepad_index, *connected); |
| 76 | } |
| 77 | |
| 78 | void Update(HContext context) |
| 79 | { |
nothing calls this directly
no test coverage detected