| 221 | // Engine/Log.cpp |
| 222 | |
| 223 | void Log_Error(const char* format, ...) |
| 224 | { |
| 225 | va_list args; |
| 226 | va_start(args, format); |
| 227 | Log_ErrorArgList(format, args); |
| 228 | va_end(args); |
| 229 | } |
| 230 | |
| 231 | void Log_ErrorArgList(const char* format, va_list args, const char* filename, uint32_t line) |
| 232 | { |
no test coverage detected