| 149 | } |
| 150 | |
| 151 | void PrintErrorF(const char* format, ...) |
| 152 | { |
| 153 | va_list argList; |
| 154 | va_start(argList, format); |
| 155 | PrintMessageV(CONSOLE_COLOR::WARNING, format, argList); |
| 156 | va_end(argList); |
| 157 | } |
| 158 | |
| 159 | void PrintErrorF(const wchar_t* format, ...) |
| 160 | { |
nothing calls this directly
no test coverage detected