Browse Source

gdbstub: E0 should be E00

nce_cpp
shinyquagsire23 10 years ago
parent
commit
c09f249f90
  1. 2
      src/core/gdbstub/gdbstub.cpp

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

Loading…
Cancel
Save