diff options
author | Mat M <mathew1800@gmail.com> | 2017-02-27 02:58:51 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-27 02:58:51 +0100 |
commit | 0cb52ee74a8255eb0320c882bc9e70700317d16a (patch) | |
tree | 800920c60df4d183d20d94465e0886e5655216a0 /src/core/gdbstub | |
parent | Merge pull request #2587 from yuriks/status-bar (diff) | |
download | yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.gz yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.bz2 yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.lz yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.xz yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.zst yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.zip |
Diffstat (limited to 'src/core/gdbstub')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index 5cf45ada5..123fe7cd4 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -230,6 +230,7 @@ static void GdbHexToMem(u8* dest, const u8* src, size_t len) { * Convert a u32 into a gdb-formatted hex string. * * @param dest Pointer to buffer to store output hex string characters. + * @param v Value to convert. */ static void IntToGdbHex(u8* dest, u32 v) { for (int i = 0; i < 8; i += 2) { |