mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 10:07:53 +00:00
gdbstub: small logic bug fix with defer_start
This commit is contained in:
parent
32ebfa66fe
commit
fc6dfe012c
1 changed files with 4 additions and 2 deletions
|
@ -1166,8 +1166,10 @@ static void RemoveBreakpoint() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HandlePacket() {
|
void HandlePacket() {
|
||||||
if (!IsConnected() && defer_start) {
|
if (!IsConnected()) {
|
||||||
|
if (defer_start) {
|
||||||
ToggleServer(true);
|
ToggleServer(true);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue