From 8026289775d5d8459291fdab0ad9ccf7114a5de2 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 23 Aug 2025 12:04:04 +0200 Subject: [PATCH] ActionReplay: Fixup #13764 --- Source/Core/Core/ActionReplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(guard, static_cast(val), curr_addr); + ApplyMemoryPatch(guard, static_cast(val), curr_addr); curr_addr += addr_incr; val += val_incr; LogInfo("Write {:08x} to address {:08x}", val & 0xFF, curr_addr);