From 6e82c77e92dc01a006a164d1370a7a60a114e634 Mon Sep 17 00:00:00 2001 From: "Jake.Stine" Date: Wed, 29 Apr 2009 08:30:33 +0000 Subject: [PATCH] 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 --- pcsx2/x86/ix86-32/iR5900-32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/ix86-32/iR5900-32.cpp b/pcsx2/x86/ix86-32/iR5900-32.cpp index 67c1b1e8ce..fc2c354932 100644 --- a/pcsx2/x86/ix86-32/iR5900-32.cpp +++ b/pcsx2/x86/ix86-32/iR5900-32.cpp @@ -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); }