2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01: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 committed by FearlessTobi
parent 38036eb1c8
commit eae2ed6b07

View file

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