1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-03-31 20:00:18 +00:00

gdbstub: small logic bug fix with defer_start

This commit is contained in:
Gauvain "GovanifY" Roussel-Tarbouriech 2020-02-24 14:30:24 +01:00
parent d8bb37fc2f
commit 8fedd5c240

@ -1043,8 +1043,10 @@ static void RemoveBreakpoint() {
}
void HandlePacket() {
if (!IsConnected() && defer_start) {
ToggleServer(true);
if (!IsConnected()) {
if (defer_start) {
ToggleServer(true);
}
return;
}