| 2549 | bool g_Error = false; |
| 2550 | |
| 2551 | void ErrorCallback(NvFlexErrorSeverity, const char* msg, const char* file, int line) |
| 2552 | { |
| 2553 | printf("Flex: %s - %s:%d\n", msg, file, line); |
| 2554 | g_Error = true; |
| 2555 | //assert(0); asserts are bad for TeamCity |
| 2556 | } |
| 2557 | |
| 2558 | void ControllerButtonEvent(SDL_ControllerButtonEvent event) |
| 2559 | { |
nothing calls this directly
no outgoing calls
no test coverage detected