make the coef dump 4KB again, I mistakenly committed code i was using to plunder the whole memory range

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4016 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-08-18 02:52:45 +00:00
parent 9dc90df0af
commit df504b0de9
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ void DumpDSP_ROMs(const u16* rom, const u16* coef)
fwrite(MEM_PHYSICAL_TO_K0(rom), 0x2000, 1, fROM);
fclose(fROM);
fwrite(MEM_PHYSICAL_TO_K0(coef), 0x2000, 1, fCOEF);
fwrite(MEM_PHYSICAL_TO_K0(coef), 0x1000, 1, fCOEF);
fclose(fCOEF);
UpdateLastMessage("DSP ROMs dumped to SD");
}