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:
Jake.Stine 2009-04-29 08:30:33 +00:00
parent ad7aa893e9
commit 6e82c77e92
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}