summaryrefslogtreecommitdiffstats
path: root/src/video_core/macro/macro.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-17 03:54:39 +0200
committerLioncash <mathew1800@gmail.com>2020-07-17 03:54:42 +0200
commit502dbfb9ebcc0d4459cc3f36cd6025415261c391 (patch)
treed2ad7aeea392e08993b14f2d0045d10b61fd940a /src/video_core/macro/macro.h
parentMerge pull request #4292 from bunnei/mii-rewrite (diff)
downloadyuzu-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.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;
};