From 4d5eba2ec979455b62139436d8310a7e7c8efd7b Mon Sep 17 00:00:00 2001 From: Marko Pusljar Date: Tue, 29 Sep 2009 18:10:54 +0000 Subject: [PATCH] just a small fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4342 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DSPCore/Src/DSPIntExtOps.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp index a9c3f5c49f..69145be540 100644 --- a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp +++ b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp @@ -42,12 +42,10 @@ namespace Ext inline bool IsSameMemArea(u16 a, u16 b) { -//LM:AX games have probs with this,... more tests needed -#if 0 - if ((a>>12)==(b>>12)) //from http://code.google.com/p/dolphin-emu/wiki/DSP_todo (Luigi research) +//LM: tested on WII + if ((a>>10)==(b>>10)) return true; else -#endif return false; }