| 27 | } |
| 28 | |
| 29 | void gui_console_printf(const char *format, ...) { |
| 30 | va_list args; |
| 31 | va_start(args, format); |
| 32 | emu->writeConsole(EmuThread::ConsoleNorm, format, args); |
| 33 | va_end(args); |
| 34 | } |
| 35 | |
| 36 | void gui_console_err_printf(const char *format, ...) { |
| 37 | va_list args; |
nothing calls this directly
no test coverage detected