| 44 | SDL_GameController* g_controller = nullptr; |
| 45 | |
| 46 | static void requestQuit() |
| 47 | { |
| 48 | SDL_Event quit_event; |
| 49 | quit_event.type = SDL_QUIT; |
| 50 | SDL_PushEvent(&quit_event); |
| 51 | } |
| 52 | |
| 53 | static void pollControllerState() |
| 54 | { |
no outgoing calls
no test coverage detected