diff options
author | shinyquagsire23 <mtinc2@gmail.com> | 2016-06-08 14:14:59 -0700 |
---|---|---|
committer | shinyquagsire23 <mtinc2@gmail.com> | 2016-06-08 14:14:59 -0700 |
commit | c6f87f7e2cd6036b9aa294392da35d476a4a5533 (patch) | |
tree | 5cc8dd2b2a8903e8a604f9825ecd92a52bbd24aa /src/core/gdbstub/gdbstub.cpp | |
parent | 98b1436b8bcbcf2b130b4b8d660e2c4f7ac1abe4 (diff) |
gdbstub: E0 should be E00
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 820b19e1ac..28d403158b 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -646,7 +646,7 @@ static void ReadMemory() { u8* data = Memory::GetPointer(addr); if (!data) { - return SendReply("E0"); + return SendReply("E00"); } MemToGdbHex(reply, data, len); |