| 133 | } |
| 134 | |
| 135 | void PrintWarningF(const char* format, ...) |
| 136 | { |
| 137 | va_list argList; |
| 138 | va_start(argList, format); |
| 139 | PrintMessageV(CONSOLE_COLOR::WARNING, format, argList); |
| 140 | va_end(argList); |
| 141 | } |
| 142 | |
| 143 | void PrintWarningF(const wchar_t* format, ...) |
| 144 | { |
nothing calls this directly
no test coverage detected