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
This commit is contained in:
daco65 2008-11-11 23:57:59 +00:00
parent d6f2a0f2e9
commit de170ee9fd

View File

@ -282,7 +282,7 @@ bool DoARSubtype_RamWriteAndFill(u8 w, u32 addr, u32 data)
Memory::Write_U16(data & 0xFFFF, new_addr + i * 2); Memory::Write_U16(data & 0xFFFF, new_addr + i * 2);
break; break;
} }
case 0x03: //some codes use 03, but its just the same as 02...
case 0x02: // Dword write case 0x02: // Dword write
Memory::Write_U32(data, new_addr); Memory::Write_U32(data, new_addr);
break; break;