diff options
author | notaz | 2015-02-05 02:29:23 +0200 |
---|---|---|
committer | notaz | 2015-02-05 02:36:19 +0200 |
commit | 58ebb94c13df061762a7aca78e52f066339d9610 (patch) | |
tree | d86c087111c0f98d057654294b593002b255a6e0 /libpcsxcore/new_dynarec | |
parent | 4144e9abc1fb8420e08e0a5ef48a9ceba7f26661 (diff) | |
download | pcsx_rearmed-58ebb94c13df061762a7aca78e52f066339d9610.tar.gz pcsx_rearmed-58ebb94c13df061762a7aca78e52f066339d9610.tar.bz2 pcsx_rearmed-58ebb94c13df061762a7aca78e52f066339d9610.zip |
dma: do some madr updates
untested, but makes ff7 behave better with linked lists
(dither problem)
Diffstat (limited to 'libpcsxcore/new_dynarec')
-rw-r--r-- | libpcsxcore/new_dynarec/emu_if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index 092c8ae..22db5d1 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -378,7 +378,7 @@ static void ari64_clear(u32 addr, u32 size) { u32 start, end, main_ram; - size *= 4; /* PCSX uses DMA units */ + size *= 4; /* PCSX uses DMA units (words) */ evprintf("ari64_clear %08x %04x\n", addr, size); |