Fixed a bug where breakpoint and watchpoints would sometime stop working

This commit is contained in:
Lior Halphon
2023-07-29 13:45:26 +03:00
parent 323b6fafa8
commit d209628369

View File

@@ -2496,6 +2496,7 @@ void GB_debugger_handle_async_commands(GB_gameboy_t *gb)
while (gb->async_input_callback && (input = gb->async_input_callback(gb))) {
GB_debugger_execute_command(gb, input);
update_debug_active(gb);
free(input);
}
}