| 34 | } |
| 35 | |
| 36 | void gui_console_err_printf(const char *format, ...) { |
| 37 | va_list args; |
| 38 | va_start(args, format); |
| 39 | emu->writeConsole(EmuThread::ConsoleErr, format, args); |
| 40 | va_end(args); |
| 41 | } |
| 42 | |
| 43 | void gui_debug_open(int reason, uint32_t data) { |
| 44 | emu->debugOpen(reason, data); |
nothing calls this directly
no test coverage detected