summaryrefslogtreecommitdiff
path: root/src/core/gdbstub/gdbstub.cpp
diff options
context:
space:
mode:
authorGravatar Mat M2017-02-26 20:58:51 -0500
committerGravatar Yuri Kunde Schlesner2017-02-26 17:58:51 -0800
commit0cb52ee74a8255eb0320c882bc9e70700317d16a (patch)
tree800920c60df4d183d20d94465e0886e5655216a0 /src/core/gdbstub/gdbstub.cpp
parentMerge pull request #2587 from yuriks/status-bar (diff)
downloadyuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.gz
yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.tar.xz
yuzu-0cb52ee74a8255eb0320c882bc9e70700317d16a.zip
Doxygen: Amend minor issues (#2593)
Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
-rw-r--r--src/core/gdbstub/gdbstub.cpp1
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) {
230 * Convert a u32 into a gdb-formatted hex string. 230 * Convert a u32 into a gdb-formatted hex string.
231 * 231 *
232 * @param dest Pointer to buffer to store output hex string characters. 232 * @param dest Pointer to buffer to store output hex string characters.
233 * @param v Value to convert.
233 */ 234 */
234static void IntToGdbHex(u8* dest, u32 v) { 235static void IntToGdbHex(u8* dest, u32 v) {
235 for (int i = 0; i < 8; i += 2) { 236 for (int i = 0; i < 8; i += 2) {