| 162 | } |
| 163 | |
| 164 | void ConsolePrint(wchar_t const* format, ...) |
| 165 | { |
| 166 | va_list val; |
| 167 | va_start(val, format); |
| 168 | VConsolePrint(format, val, false); |
| 169 | va_end(val); |
| 170 | } |
| 171 | |
| 172 | void ConsolePrintLn(wchar_t const* format, ...) |
| 173 | { |
no test coverage detected