mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
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:
parent
d6f2a0f2e9
commit
de170ee9fd
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user