From 782344eed8b36dedfe81b2f9b542e61efbe56aba Mon Sep 17 00:00:00 2001 From: Eladash Date: Mon, 24 Jul 2023 13:33:23 +0300 Subject: [PATCH] Debugger: Make break-all non-default --- rpcs3/Emu/Cell/PPUThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index f0fb3e7caa..c50e8c1b1a 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -1084,7 +1084,7 @@ void ppu_remove_hle_instructions(u32 addr, u32 size) } } -atomic_t g_debugger_pause_all_threads_on_bp = true; +atomic_t g_debugger_pause_all_threads_on_bp = false; // Breakpoint entry point static void ppu_break(ppu_thread& ppu, ppu_opcode_t, be_t* this_op, ppu_intrp_func* next_fn)