mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:29:59 +00:00
Merge pull request #3699 from FearlessTobi/port-5185
Port citra-emu/citra#5185: "gdbstub: Fix some gdbstub jankiness"
This commit is contained in:
commit
e84f82a028
1 changed files with 3 additions and 4 deletions
|
@ -1389,10 +1389,9 @@ void SendTrap(Kernel::Thread* thread, int trap) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!halt_loop || current_thread == thread) {
|
||||
current_thread = thread;
|
||||
SendSignal(thread, trap);
|
||||
}
|
||||
current_thread = thread;
|
||||
SendSignal(thread, trap);
|
||||
|
||||
halt_loop = true;
|
||||
send_trap = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue