mirror of https://github.com/PCSX2/pcsx2.git
Bugfix for r1083. [Don't ask me what I was thinking when I wrote >>10 instead of >>12]
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1085 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
ad7aa893e9
commit
6e82c77e92
|
@ -1269,7 +1269,7 @@ void __fastcall dyna_page_reset(u32 start,u32 sz)
|
|||
{
|
||||
DevCon::WriteLn("dyna_page_reset .. start=%08X count=%d", params start,sz);
|
||||
Cpu->Clear(start & ~0xfffUL, 0x400);
|
||||
manual_counter[start >> 10]++;
|
||||
manual_counter[start >> 12]++;
|
||||
mmap_MarkCountedRamPage(PSM(start), start & ~0xfffUL);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue