diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-16 21:54:39 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-16 21:54:42 -0400 |
commit | 502dbfb9ebcc0d4459cc3f36cd6025415261c391 (patch) | |
tree | d2ad7aeea392e08993b14f2d0045d10b61fd940a /src | |
parent | 3bbf4462db9bce89e7402f21dcccc81592d70483 (diff) |
macro: Resolve missing parameter in doxygen comment
Resolves a -Wdocumentation warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/macro/macro.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/macro/macro.h b/src/video_core/macro/macro.h index 4d00b84b0..31ee3440a 100644 --- a/src/video_core/macro/macro.h +++ b/src/video_core/macro/macro.h @@ -103,8 +103,9 @@ public: virtual ~CachedMacro() = default; /** * Executes the macro code with the specified input parameters. - * @param code The macro byte code to execute + * * @param parameters The parameters of the macro + * @param method The method to execute */ virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0; }; |