| 29 | } |
| 30 | |
| 31 | void |
| 32 | fatalError(const char *string) |
| 33 | { |
| 34 | printf("%s: %s\n", string, SDL_GetError()); |
| 35 | SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, string, SDL_GetError(), NULL); |
| 36 | exit(1); |
| 37 | } |
| 38 | |
| 39 | static Uint64 prevTime = 0; |
| 40 |
no test coverage detected