gdbstub: E0 should be E00

This commit is contained in:
shinyquagsire23
2016-06-08 14:14:59 -07:00
parent 154c4c44b8
commit f6ee547dbb

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);