| 11 | bool gSoftAssert = false; |
| 12 | |
| 13 | void ErrorMessage(ErrorMessageLevel level, const char* format, ...) |
| 14 | { |
| 15 | va_list a; |
| 16 | va_start(a, format); |
| 17 | CurrentAppFrameFunctions->ErrorMessage(level, format, a); |
| 18 | va_end(a); |
| 19 | } |
| 20 | |
| 21 | void ErrorMessage(const char* format, ...) |
| 22 | { |
no test coverage detected