MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / gui_console_printf

Function gui_console_printf

gui/qt/emuthread.cpp:29–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27}
28
29void 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
36void gui_console_err_printf(const char *format, ...) {
37 va_list args;

Callers

nothing calls this directly

Calls 1

writeConsoleMethod · 0.80

Tested by

no test coverage detected