Browse Source

gdbstub: E0 should be E00

shinyquagsire23 10 years ago
parent
commit
c6f87f7e2c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/gdbstub/gdbstub.cpp

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