diff options
| author | Tilka <tilkax@gmail.com> | 2025-08-23 12:20:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-23 12:20:25 +0100 |
| commit | 50d3a5510cf0fcc7eced3cfb2fa184f4bdd3165a (patch) | |
| tree | 2c136cc86fba83b310860a068f899b45db68603e | |
| parent | a1423e386cded26b18770c3fa1b220208ebe8f94 (diff) | |
| parent | 8026289775d5d8459291fdab0ad9ccf7114a5de2 (diff) | |
Merge pull request #13898 from SuperSamus/patch-invalidate-cache-fixup
ActionReplay: Fixup #13764
| -rw-r--r-- | Source/Core/Core/ActionReplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/ActionReplay.cpp b/Source/Core/Core/ActionReplay.cpp index 7642de40ac..8cef176415 100644 --- a/Source/Core/Core/ActionReplay.cpp +++ b/Source/Core/Core/ActionReplay.cpp @@ -585,7 +585,7 @@ static bool ZeroCode_FillAndSlide(const Core::CPUThreadGuard& guard, const u32 v LogInfo("--------"); for (int i = 0; i < write_num; ++i) { - ApplyMemoryPatch<u32>(guard, static_cast<u8>(val), curr_addr); + ApplyMemoryPatch<u8>(guard, static_cast<u8>(val), curr_addr); curr_addr += addr_incr; val += val_incr; LogInfo("Write {:08x} to address {:08x}", val & 0xFF, curr_addr); |
