diff options
| author | 2017-02-26 20:58:51 -0500 | |
|---|---|---|
| committer | 2017-02-26 17:58:51 -0800 | |
| commit | 0cb52ee74a8255eb0320c882bc9e70700317d16a (patch) | |
| tree | 800920c60df4d183d20d94465e0886e5655216a0 /src/core/hle/ipc.h | |
| parent | Merge pull request #2587 from yuriks/status-bar (diff) | |
| download | yuzu-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/hle/ipc.h')
| -rw-r--r-- | src/core/hle/ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index bbaae8b79..cd9a5863d 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h | |||
| @@ -72,8 +72,8 @@ union Header { | |||
| 72 | * through modifications and checks by the kernel. | 72 | * through modifications and checks by the kernel. |
| 73 | * The translate parameters are described by headers generated with the IPC::*Desc functions. | 73 | * The translate parameters are described by headers generated with the IPC::*Desc functions. |
| 74 | * | 74 | * |
| 75 | * @note While #normal_params_size is equivalent to the number of normal parameters, | 75 | * @note While @p normal_params_size is equivalent to the number of normal parameters, |
| 76 | * #translate_params_size includes the size occupied by the translate parameters headers. | 76 | * @p translate_params_size includes the size occupied by the translate parameters headers. |
| 77 | */ | 77 | */ |
| 78 | inline u32 MakeHeader(u16 command_id, unsigned int normal_params_size, | 78 | inline u32 MakeHeader(u16 command_id, unsigned int normal_params_size, |
| 79 | unsigned int translate_params_size) { | 79 | unsigned int translate_params_size) { |