aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/macro/macro.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-05-10 17:07:21 -0400
committerLiam <byteslice@airmail.cc>2022-05-10 17:07:21 -0400
commite158951695f6ed5626adc0685431a78c5a13867a (patch)
treebab8f3fc2bec9934968c7a8fd09ead2b93d5a1e6 /src/video_core/macro/macro.cpp
parent2123594ce2fb7d03b4a86967885d35204801bc49 (diff)
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.cpp5
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) {
uploaded_macro_code[method].push_back(data);
}
+void MacroEngine::ClearCode(u32 method) {
+ macro_cache.erase(method);
+ uploaded_macro_code.erase(method);
+}
+
void MacroEngine::Execute(u32 method, const std::vector<u32>& parameters) {
auto compiled_macro = macro_cache.find(method);
if (compiled_macro != macro_cache.end()) {