mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 00:16:23 +02:00
gdb: Log CommandReadMemory failure
This commit is contained in:
parent
cd2a7c9916
commit
1b37038d5a
1 changed files with 3 additions and 0 deletions
|
@ -862,6 +862,9 @@ namespace Ryujinx.HLE.Debugger
|
||||||
}
|
}
|
||||||
catch (InvalidMemoryRegionException)
|
catch (InvalidMemoryRegionException)
|
||||||
{
|
{
|
||||||
|
// InvalidAccessHandler will show an error message, we log it again to tell user the error is from GDB (which can be ignored)
|
||||||
|
// TODO: Do not let InvalidAccessHandler show the error message
|
||||||
|
Logger.Notice.Print(LogClass.GdbStub, $"GDB failed to read memory at 0x{addr:X16}");
|
||||||
ReplyError();
|
ReplyError();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue