arm_dynarmic: ClearInstructionCache should clear all instruction caches
Bugfix of 67a70bd
.
This commit is contained in:
parent
c810a3f3b0
commit
2d917f8ca0
|
@ -168,7 +168,9 @@ void ARM_Dynarmic::PrepareReschedule() {
|
|||
}
|
||||
|
||||
void ARM_Dynarmic::ClearInstructionCache() {
|
||||
jit->ClearCache();
|
||||
for (const auto& j : jits) {
|
||||
j.second->ClearCache();
|
||||
}
|
||||
}
|
||||
|
||||
void ARM_Dynarmic::PageTableChanged() {
|
||||
|
|
Reference in New Issue