summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar David2020-07-17 13:13:22 +1000
committerGravatar GitHub2020-07-17 13:13:22 +1000
commit9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4 (patch)
tree45149c02e37f03f8ab0f9454239759c2fd8a781c
parentMerge pull request #4370 from lioncash/simplify (diff)
parentmacro: Resolve missing parameter in doxygen comment (diff)
downloadyuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.gz
yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.xz
yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.zip
Merge pull request #4368 from lioncash/macro
macro: Resolve missing parameter in doxygen comment
Diffstat (limited to '')
-rw-r--r--src/video_core/macro/macro.h3
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};