From b91930a2d4742ec001d0b1df1abe938da7527d03 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 14 Apr 2013 00:17:22 -0400 Subject: [PATCH] Really minor LogInfo consistency fix in ActionReplay.cpp. All the other [bit size] Write LogInfo calls had a hyphen in the text. --- Source/Core/Core/Src/ActionReplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/ActionReplay.cpp b/Source/Core/Core/Src/ActionReplay.cpp index 98857fae97..d14414c5ef 100644 --- a/Source/Core/Core/Src/ActionReplay.cpp +++ b/Source/Core/Core/Src/ActionReplay.cpp @@ -535,7 +535,7 @@ bool Subtype_RamWriteAndFill(const ARAddr addr, const u32 data) case DATATYPE_32BIT_FLOAT: case DATATYPE_32BIT: // Dword write - LogInfo("32bit Write"); + LogInfo("32-bit Write"); LogInfo("--------"); Memory::Write_U32(data, new_addr); LogInfo("Wrote %08x to address %08x", data, new_addr);