mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-25 13:01:56 -08:00
Reply with an error if we fail to step
This commit is contained in:
parent
6ecc829516
commit
5e65fd8808
@ -562,9 +562,14 @@ namespace Ryujinx.HLE.Debugger
|
||||
thread.Context.DebugPc = newPc.Value;
|
||||
}
|
||||
|
||||
thread.DebugStep();
|
||||
|
||||
Reply($"T05thread:{thread.ThreadUid:x};");
|
||||
if (!thread.DebugStep())
|
||||
{
|
||||
ReplyError();
|
||||
}
|
||||
else
|
||||
{
|
||||
Reply($"T05thread:{thread.ThreadUid:x};");
|
||||
}
|
||||
}
|
||||
|
||||
private void CommandIsAlive(ulong? threadId)
|
||||
|
Loading…
x
Reference in New Issue
Block a user