From 187a599b366efb624c8d5322fa7003bea0120a73 Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Fri, 6 Oct 2017 13:17:15 +0000 Subject: [PATCH] ActionReplay: Fix logging in Subtype_AddCode The addition was being repeated (for logging) after it was committed to memory, thus causing bogus values to appear in the log. --- Source/Core/Core/ActionReplay.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/ActionReplay.cpp b/Source/Core/Core/ActionReplay.cpp index aedfc3e609..6055a7057c 100644 --- a/Source/Core/Core/ActionReplay.cpp +++ b/Source/Core/Core/ActionReplay.cpp @@ -448,7 +448,7 @@ static bool Subtype_AddCode(const ARAddr& addr, const u32 data) LogInfo("8-bit Add"); LogInfo("--------"); PowerPC::HostWrite_U8(PowerPC::HostRead_U8(new_addr) + data, new_addr); - LogInfo("Wrote %08x to address %08x", PowerPC::HostRead_U8(new_addr) + (data & 0xFF), new_addr); + LogInfo("Wrote %02x to address %08x", PowerPC::HostRead_U8(new_addr), new_addr); LogInfo("--------"); break; @@ -456,8 +456,7 @@ static bool Subtype_AddCode(const ARAddr& addr, const u32 data) LogInfo("16-bit Add"); LogInfo("--------"); PowerPC::HostWrite_U16(PowerPC::HostRead_U16(new_addr) + data, new_addr); - LogInfo("Wrote %08x to address %08x", PowerPC::HostRead_U16(new_addr) + (data & 0xFFFF), - new_addr); + LogInfo("Wrote %04x to address %08x", PowerPC::HostRead_U16(new_addr), new_addr); LogInfo("--------"); break; @@ -465,7 +464,7 @@ static bool Subtype_AddCode(const ARAddr& addr, const u32 data) LogInfo("32-bit Add"); LogInfo("--------"); PowerPC::HostWrite_U32(PowerPC::HostRead_U32(new_addr) + data, new_addr); - LogInfo("Wrote %08x to address %08x", PowerPC::HostRead_U32(new_addr) + data, new_addr); + LogInfo("Wrote %08x to address %08x", PowerPC::HostRead_U32(new_addr), new_addr); LogInfo("--------"); break;