We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2a6d77 + b4e77de commit 1b0cbe5Copy full SHA for 1b0cbe5
src/core/gdb-server.cc
@@ -520,7 +520,7 @@ void PCSX::GdbClient::processCommand() {
520
uint8_t n = fromHexChar(m_cmd[1]);
521
n <<= 4;
522
n |= fromHexChar(m_cmd[2]);
523
- dumpOneRegister(n);
+ write(dumpOneRegister(n));
524
} else if (StringsHelpers::startsWith(m_cmd, "P")) {
525
if ((m_cmd.length() != 12) || (m_cmd[3] != '=')) {
526
write("E00");
0 commit comments