diff options
author | bunnei <bunneidev@gmail.com> | 2022-01-26 21:39:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 21:39:59 +0100 |
commit | 40050c1188ecae2688488e8109b708e04295b480 (patch) | |
tree | 115f40e763afef8b376874150d536c23f12bd02e /src/video_core/macro/macro.h | |
parent | Merge pull request #7769 from german77/no-control (diff) | |
parent | video_core/macro: Add missing <cstring> header (diff) | |
download | yuzu-40050c1188ecae2688488e8109b708e04295b480.tar yuzu-40050c1188ecae2688488e8109b708e04295b480.tar.gz yuzu-40050c1188ecae2688488e8109b708e04295b480.tar.bz2 yuzu-40050c1188ecae2688488e8109b708e04295b480.tar.lz yuzu-40050c1188ecae2688488e8109b708e04295b480.tar.xz yuzu-40050c1188ecae2688488e8109b708e04295b480.tar.zst yuzu-40050c1188ecae2688488e8109b708e04295b480.zip |
Diffstat (limited to 'src/video_core/macro/macro.h')
-rw-r--r-- | src/video_core/macro/macro.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/macro/macro.h b/src/video_core/macro/macro.h index 31ee3440a..7aaa49286 100644 --- a/src/video_core/macro/macro.h +++ b/src/video_core/macro/macro.h @@ -119,7 +119,7 @@ public: void AddCode(u32 method, u32 data); // Compiles the macro if its not in the cache, and executes the compiled macro - void Execute(Engines::Maxwell3D& maxwell3d, u32 method, const std::vector<u32>& parameters); + void Execute(u32 method, const std::vector<u32>& parameters); protected: virtual std::unique_ptr<CachedMacro> Compile(const std::vector<u32>& code) = 0; |