We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec17dc commit 516d420Copy full SHA for 516d420
1 file changed
tests/autotester/autotester_cli.cpp
@@ -30,6 +30,10 @@ namespace cemucore
30
extern "C"
31
{
32
void gui_console_clear() {}
33
+ void gui_debug_close(void) {}
34
+ void gui_debug_open(int reason, uint32_t data) {
35
+ printf("[CEmu debug open] reason=%d, data=0x%X\n", reason, data);
36
+ }
37
void gui_console_printf(const char *format, ...) { (void)format; }
38
void gui_console_err_printf(const char *format, ...) {
39
static char message[512];
0 commit comments