1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-20 11:20:49 +00:00

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

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