diff options
| author | 2020-07-16 21:54:39 -0400 | |
|---|---|---|
| committer | 2020-07-16 21:54:42 -0400 | |
| commit | 502dbfb9ebcc0d4459cc3f36cd6025415261c391 (patch) | |
| tree | d2ad7aeea392e08993b14f2d0045d10b61fd940a /src | |
| parent | Merge pull request #4292 from bunnei/mii-rewrite (diff) | |
| download | yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.gz yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.xz yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.zip | |
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: | |||
| 103 | virtual ~CachedMacro() = default; | 103 | virtual ~CachedMacro() = default; |
| 104 | /** | 104 | /** |
| 105 | * Executes the macro code with the specified input parameters. | 105 | * Executes the macro code with the specified input parameters. |
| 106 | * @param code The macro byte code to execute | 106 | * |
| 107 | * @param parameters The parameters of the macro | 107 | * @param parameters The parameters of the macro |
| 108 | * @param method The method to execute | ||
| 108 | */ | 109 | */ |
| 109 | virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0; | 110 | virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0; |
| 110 | }; | 111 | }; |