Explorar el Código

gdbstub: E0 should be E00

shinyquagsire23 hace 10 años
padre
commit
c6f87f7e2c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);