diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-25 09:42:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-25 09:42:59 -0400 |
| commit | fa913a702f94818fcddf4ffd3aaded41a41b3a3b (patch) | |
| tree | a4a994e1c91ce2fa862b681daee252e16a28159d /src/video_core/macro/macro_jit_x64.cpp | |
| parent | 3c38bd7cf0dbe73f72c008cb6fc0df38b50dc986 (diff) | |
| parent | 2f90694797e30088820937855acf613bdcf27247 (diff) | |
Merge pull request #9112 from vonchenplus/deferred_draw
video_core: Reimplementing the maxwell drawing trigger mechanism
Diffstat (limited to 'src/video_core/macro/macro_jit_x64.cpp')
| -rw-r--r-- | src/video_core/macro/macro_jit_x64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/macro/macro_jit_x64.cpp b/src/video_core/macro/macro_jit_x64.cpp index a302a9603..25c1ce798 100644 --- a/src/video_core/macro/macro_jit_x64.cpp +++ b/src/video_core/macro/macro_jit_x64.cpp @@ -346,7 +346,7 @@ void MacroJITx64Impl::Compile_Read(Macro::Opcode opcode) { } void Send(Engines::Maxwell3D* maxwell3d, Macro::MethodAddress method_address, u32 value) { - maxwell3d->CallMethodFromMME(method_address.address, value); + maxwell3d->CallMethod(method_address.address, value, true); } void MacroJITx64Impl::Compile_Send(Xbyak::Reg32 value) { |
