From ae41378dd02d7213b6136e4705fc5f23dd51d153 Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Wed, 2 Jul 2008 18:13:15 +0000 Subject: [PATCH] fixed a typo which could have potentially slowed down the emu. Thanks goes to cottonvibes for that one! --- pcsx2/Memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Memory.c b/pcsx2/Memory.c index fc4c544..0166ac3 100644 --- a/pcsx2/Memory.c +++ b/pcsx2/Memory.c @@ -1493,7 +1493,7 @@ int recMemConstWrite32(u32 mem, int mmreg) CALLFunc((u32)Cpu->ClearVU0); ADD32ItoR(ESP, 8); } - else if( mem >= 0x11008000 && mem < 0x1100c0000 ) { + else if( mem >= 0x11008000 && mem < 0x1100c000 ) { PUSH32I(1); PUSH32I(mem&0x3ff8); CALLFunc((u32)Cpu->ClearVU1);