diff options
| author | 2022-05-11 17:49:25 -0400 | |
|---|---|---|
| committer | 2022-05-11 17:49:25 -0400 | |
| commit | c2b583c9113985f6e3d228f83f87ee483dc96297 (patch) | |
| tree | 11fe0c54547ee3e0401f3201de388dee72a41d00 /src/video_core/macro/macro.cpp | |
| parent | Merge pull request #8325 from zhaobot/tx-update-20220509164742 (diff) | |
| parent | video_core/macro: clear code on upload address assignment (diff) | |
| download | yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.gz yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.tar.xz yuzu-c2b583c9113985f6e3d228f83f87ee483dc96297.zip | |
Merge pull request #8328 from liamwhite/macro-clear
video_core/macro: clear code on upload address assignment
Diffstat (limited to 'src/video_core/macro/macro.cpp')
| -rw-r--r-- | src/video_core/macro/macro.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/macro/macro.cpp b/src/video_core/macro/macro.cpp index 86393c49c..e7279efcd 100644 --- a/src/video_core/macro/macro.cpp +++ b/src/video_core/macro/macro.cpp | |||
| @@ -45,6 +45,11 @@ void MacroEngine::AddCode(u32 method, u32 data) { | |||
| 45 | uploaded_macro_code[method].push_back(data); | 45 | uploaded_macro_code[method].push_back(data); |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | void MacroEngine::ClearCode(u32 method) { | ||
| 49 | macro_cache.erase(method); | ||
| 50 | uploaded_macro_code.erase(method); | ||
| 51 | } | ||
| 52 | |||
| 48 | void MacroEngine::Execute(u32 method, const std::vector<u32>& parameters) { | 53 | void MacroEngine::Execute(u32 method, const std::vector<u32>& parameters) { |
| 49 | auto compiled_macro = macro_cache.find(method); | 54 | auto compiled_macro = macro_cache.find(method); |
| 50 | if (compiled_macro != macro_cache.end()) { | 55 | if (compiled_macro != macro_cache.end()) { |