| 737 | } |
| 738 | |
| 739 | void warnf(ConsoleLogEntry::Type type, const char* fmt,...) |
| 740 | { |
| 741 | va_list argptr; |
| 742 | va_start(argptr, fmt); |
| 743 | _printf(ConsoleLogEntry::Warning, type, fmt, argptr); |
| 744 | va_end(argptr); |
| 745 | } |
| 746 | |
| 747 | void errorf(ConsoleLogEntry::Type type, const char* fmt,...) |
| 748 | { |