mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 01:49:39 -06:00
gdb: Fix missing return
This commit is contained in:
@ -548,6 +548,7 @@ namespace Ryujinx.HLE.Debugger
|
||||
if (!BreakpointManager.SetBreakPoint(addr, len, false))
|
||||
{
|
||||
ReplyError();
|
||||
return;
|
||||
}
|
||||
ReplyOK();
|
||||
return;
|
||||
@ -583,6 +584,7 @@ namespace Ryujinx.HLE.Debugger
|
||||
if (!BreakpointManager.ClearBreakPoint(addr, len))
|
||||
{
|
||||
ReplyError();
|
||||
return;
|
||||
}
|
||||
ReplyOK();
|
||||
return;
|
||||
|
Reference in New Issue
Block a user