summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar shinyquagsire232016-06-08 14:14:59 -0700
committerGravatar shinyquagsire232016-06-08 14:14:59 -0700
commitc6f87f7e2cd6036b9aa294392da35d476a4a5533 (patch)
tree5cc8dd2b2a8903e8a604f9825ecd92a52bbd24aa /src
parentMerge pull request #1765 from JayFoxRox/debug-surface-viewer (diff)
downloadyuzu-c6f87f7e2cd6036b9aa294392da35d476a4a5533.tar.gz
yuzu-c6f87f7e2cd6036b9aa294392da35d476a4a5533.tar.xz
yuzu-c6f87f7e2cd6036b9aa294392da35d476a4a5533.zip
gdbstub: E0 should be E00
Diffstat (limited to 'src')
-rw-r--r--src/core/gdbstub/gdbstub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index 820b19e1a..28d403158 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -646,7 +646,7 @@ static void ReadMemory() {
646 646
647 u8* data = Memory::GetPointer(addr); 647 u8* data = Memory::GetPointer(addr);
648 if (!data) { 648 if (!data) {
649 return SendReply("E0"); 649 return SendReply("E00");
650 } 650 }
651 651
652 MemToGdbHex(reply, data, len); 652 MemToGdbHex(reply, data, len);