diff options
| author | 2016-10-28 21:06:36 -0400 | |
|---|---|---|
| committer | 2016-10-28 21:06:36 -0400 | |
| commit | dc1e04137c3788a49b042a6aab95a9508cdee484 (patch) | |
| tree | dc57e820c627734944544edbad18bc2a5d9ec6a7 /src/core/gdbstub/gdbstub.cpp | |
| parent | Travis: only upload for push (#2134) (diff) | |
| parent | Small fix to let IDA see target.xml (diff) | |
| download | yuzu-dc1e04137c3788a49b042a6aab95a9508cdee484.tar.gz yuzu-dc1e04137c3788a49b042a6aab95a9508cdee484.tar.xz yuzu-dc1e04137c3788a49b042a6aab95a9508cdee484.zip | |
Merge pull request #2146 from mailwl/gdbstub-ida-regs
Small fix to let IDA see target.xml
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 7fc72d801..ceb993ea1 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -413,7 +413,7 @@ static void HandleQuery() { | |||
| 413 | 413 | ||
| 414 | if (strcmp(query, "TStatus") == 0) { | 414 | if (strcmp(query, "TStatus") == 0) { |
| 415 | SendReply("T0"); | 415 | SendReply("T0"); |
| 416 | } else if (strncmp(query, "Supported:", strlen("Supported:")) == 0) { | 416 | } else if (strncmp(query, "Supported", strlen("Supported")) == 0) { |
| 417 | // PacketSize needs to be large enough for target xml | 417 | // PacketSize needs to be large enough for target xml |
| 418 | SendReply("PacketSize=800;qXfer:features:read+"); | 418 | SendReply("PacketSize=800;qXfer:features:read+"); |
| 419 | } else if (strncmp(query, "Xfer:features:read:target.xml:", | 419 | } else if (strncmp(query, "Xfer:features:read:target.xml:", |