diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-17 03:54:39 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-17 03:54:42 +0200 |
commit | 502dbfb9ebcc0d4459cc3f36cd6025415261c391 (patch) | |
tree | d2ad7aeea392e08993b14f2d0045d10b61fd940a /src | |
parent | Merge pull request #4292 from bunnei/mii-rewrite (diff) | |
download | yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.gz yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.bz2 yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.lz yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.xz yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.tar.zst yuzu-502dbfb9ebcc0d4459cc3f36cd6025415261c391.zip |
Diffstat (limited to '')
-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; }; |