From de170ee9fd49cb9ed234fadb80de3216aaf77a03 Mon Sep 17 00:00:00 2001 From: daco65 Date: Tue, 11 Nov 2008 23:57:59 +0000 Subject: [PATCH] just some minor actionreplay fixing for codes that used 03 size git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1137 8ced0084-cf51-0410-be5f-012b33b47a6e --- 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 d5b660b277..3f38e39c52 100644 --- a/Source/Core/Core/Src/ActionReplay.cpp +++ b/Source/Core/Core/Src/ActionReplay.cpp @@ -282,7 +282,7 @@ bool DoARSubtype_RamWriteAndFill(u8 w, u32 addr, u32 data) Memory::Write_U16(data & 0xFFFF, new_addr + i * 2); break; } - + case 0x03: //some codes use 03, but its just the same as 02... case 0x02: // Dword write Memory::Write_U32(data, new_addr); break;