diff options
| author | JosJuice <josjuice@gmail.com> | 2023-09-30 17:32:51 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2023-10-31 19:43:49 +0100 |
| commit | 899d61bc7dd093393aafcd88c4f072ff879228a7 (patch) | |
| tree | 188dda7a7167c194804b547af8ba7af9fe59eccd /Source/Core/VideoCommon/VertexLoaderARM64.cpp | |
| parent | 5e74a8b850d67bc44b0e41e2ec9f3220dfa811ac (diff) | |
Jit64: Recompile asm routines on cache clear
This is needed so that the checks added in the previous commit will be
reevaluated if the value of m_enable_dcache changes.
JitArm64 was already recompiling its asm routines on cache clear by
necessity. It doesn't have the same setup as Jit64 where the asm
routines are in a separate region, so clearing the JitArm64 cache
results in the asm routines being cleared too.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderARM64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderARM64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderARM64.cpp b/Source/Core/VideoCommon/VertexLoaderARM64.cpp index 03bb82d5c2..12b6b1d79a 100644 --- a/Source/Core/VideoCommon/VertexLoaderARM64.cpp +++ b/Source/Core/VideoCommon/VertexLoaderARM64.cpp @@ -56,7 +56,7 @@ VertexLoaderARM64::VertexLoaderARM64(const TVtxDesc& vtx_desc, const VAT& vtx_at const Common::ScopedJITPageWriteAndNoExecute enable_jit_page_writes; ClearCodeSpace(); GenerateVertexLoader(); - WriteProtect(); + WriteProtect(true); } // Returns the register to use as the base and an offset from that register. |
