diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-25 19:41:35 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-25 19:41:38 +0100 |
commit | a05d9405b9192b0e9402eba2305d1a35aac44a74 (patch) | |
tree | b73e55e664d2fa5d8e924f26fe3a03850b70eadc /src/video_core/engines | |
parent | video_core/macro_jit_x64: Remove unused impl class member (diff) | |
download | yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.tar yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.tar.gz yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.tar.bz2 yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.tar.lz yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.tar.xz yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.tar.zst yuzu-a05d9405b9192b0e9402eba2305d1a35aac44a74.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index b18b8a02a..c38ebd670 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -240,7 +240,7 @@ void Maxwell3D::CallMacroMethod(u32 method, const std::vector<u32>& parameters) ((method - MacroRegistersStart) >> 1) % static_cast<u32>(macro_positions.size()); // Execute the current macro. - macro_engine->Execute(*this, macro_positions[entry], parameters); + macro_engine->Execute(macro_positions[entry], parameters); if (mme_draw.current_mode != MMEDrawMode::Undefined) { FlushMMEInlineDraw(); } |