mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-11 00:51:55 -08:00
gdbstub: small logic bug fix with defer_start
This commit is contained in:
parent
38036eb1c8
commit
eae2ed6b07
@ -1166,8 +1166,10 @@ static void RemoveBreakpoint() {
|
||||
}
|
||||
|
||||
void HandlePacket() {
|
||||
if (!IsConnected() && defer_start) {
|
||||
ToggleServer(true);
|
||||
if (!IsConnected()) {
|
||||
if (defer_start) {
|
||||
ToggleServer(true);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user