Merge pull request #1891 from shinyquagsire23/gdb-E0-fix

gdbstub: E0 should be E00
This commit is contained in:
Tony Wasserka 2016-06-08 23:30:47 +02:00
commit ba4fb4109a

View file

@ -646,7 +646,7 @@ static void ReadMemory() {
u8* data = Memory::GetPointer(addr);
if (!data) {
return SendReply("E0");
return SendReply("E00");
}
MemToGdbHex(reply, data, len);