summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-05-11 23:49:25 +0200
committerGitHub <noreply@github.com>2022-05-11 23:49:25 +0200
commitc2b583c9113985f6e3d228f83f87ee483dc96297 (patch)
tree11fe0c54547ee3e0401f3201de388dee72a41d00 /src/video_core/engines
parentMerge pull request #8325 from zhaobot/tx-update-20220509164742 (diff)
parentvideo_core/macro: clear code on upload address assignment (diff)
downloadyuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar
yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.gz
yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.bz2
yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.lz
yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.xz
yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.zst
yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index d4652b167..7d0cb8fce 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -173,6 +173,8 @@ void Maxwell3D::ProcessMethodCall(u32 method, u32 argument, u32 nonshadow_argume
case MAXWELL3D_REG_INDEX(shadow_ram_control):
shadow_state.shadow_ram_control = static_cast<Regs::ShadowRamControl>(nonshadow_argument);
return;
+ case MAXWELL3D_REG_INDEX(macros.upload_address):
+ return macro_engine->ClearCode(regs.macros.upload_address);
case MAXWELL3D_REG_INDEX(macros.data):
return macro_engine->AddCode(regs.macros.upload_address, argument);
case MAXWELL3D_REG_INDEX(macros.bind):