arm_dynarmic: ClearInstructionCache should clear all instruction caches

Bugfix of 67a70bd.
This commit is contained in:
MerryMage 2017-11-19 14:45:35 +00:00
parent c810a3f3b0
commit 2d917f8ca0

View file

@ -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() {