diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-07-17 05:13:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-17 05:13:22 +0200 |
commit | 9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4 (patch) | |
tree | 45149c02e37f03f8ab0f9454239759c2fd8a781c /src | |
parent | Merge pull request #4370 from lioncash/simplify (diff) | |
parent | macro: Resolve missing parameter in doxygen comment (diff) | |
download | yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.gz yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.bz2 yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.lz yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.xz yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.tar.zst yuzu-9cca0c2f839b224bd65fc6ceb01cd85cc584b9c4.zip |
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; }; |