just a small fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4342 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar 2009-09-29 18:10:54 +00:00
parent 6d395d3ab0
commit 4d5eba2ec9

View file

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