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
1 changed files with 2 additions and 4 deletions

View File

@ -42,12 +42,10 @@ namespace Ext
inline bool IsSameMemArea(u16 a, u16 b) inline bool IsSameMemArea(u16 a, u16 b)
{ {
//LM:AX games have probs with this,... more tests needed //LM: tested on WII
#if 0 if ((a>>10)==(b>>10))
if ((a>>12)==(b>>12)) //from http://code.google.com/p/dolphin-emu/wiki/DSP_todo (Luigi research)
return true; return true;
else else
#endif
return false; return false;
} }