diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-24 09:01:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-24 09:01:00 -0400 |
| commit | 32343d820d4551153c76e76a3e310e4e3db692e7 (patch) | |
| tree | e74fa2ee58d499c4beed826732a8b4574b9c2a03 /src/video_core/engines/maxwell_3d.cpp | |
| parent | b66ccaa37615352a5a8b97e20ce6e6751d136b18 (diff) | |
| parent | f5e2aec4220ee2b72ec2986e0e60625897b2fd44 (diff) | |
Merge pull request #4046 from ogniK5377/macro-hle-prod
Add support for HLEing Macros
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
| -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 ea3c8a963..c01436295 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -128,7 +128,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(macro_positions[entry], parameters); + macro_engine->Execute(*this, macro_positions[entry], parameters); if (mme_draw.current_mode != MMEDrawMode::Undefined) { FlushMMEInlineDraw(); } |
