diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-11-01 11:53:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-01 11:53:56 +0100 |
| commit | 166d8a1aa3b615fc7e30fd07dd0b943eff95e77d (patch) | |
| tree | 6a3d6bb3971572a0381fedf30fff79dc5306332a /Source/Core/VideoCommon/VertexLoaderX64.cpp | |
| parent | b32ac9353ee760e13b7e62a4b633e33a39f51972 (diff) | |
| parent | d04e67be3d26b7017f2bb061618181fd71611f9a (diff) | |
Merge pull request #12211 from JosJuice/toggle-dcache
PowerPC: Allow toggling write-back cache during emulation
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderX64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderX64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderX64.cpp b/Source/Core/VideoCommon/VertexLoaderX64.cpp index 0280ec4e83..9aba5a58c8 100644 --- a/Source/Core/VideoCommon/VertexLoaderX64.cpp +++ b/Source/Core/VideoCommon/VertexLoaderX64.cpp @@ -49,7 +49,7 @@ VertexLoaderX64::VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att) AllocCodeSpace(4096); ClearCodeSpace(); GenerateVertexLoader(); - WriteProtect(); + WriteProtect(true); Common::JitRegister::Register(region, GetCodePtr(), "VertexLoaderX64\nVtx desc: \n{}\nVAT:\n{}", vtx_desc, vtx_att); |
