summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-07-17 13:13:22 +1000
committerGitHub <noreply@github.com>2020-07-17 13:13:22 +1000
commit9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4 (patch)
tree45149c02e37f03f8ab0f9454239759c2fd8a781c /src
parent3ce4edba6448ae0f544bed4291cef3e8c3e991f5 (diff)
parent502dbfb9ebcc0d4459cc3f36cd6025415261c391 (diff)
Merge pull request #4368 from lioncash/macro
macro: Resolve missing parameter in doxygen comment
Diffstat (limited to 'src')
-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:
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;
};