diff options
| author | Marko Pusljar <LM1234@gmail.com> | 2009-09-29 18:10:54 +0000 |
|---|---|---|
| committer | Marko Pusljar <LM1234@gmail.com> | 2009-09-29 18:10:54 +0000 |
| commit | 4d5eba2ec979455b62139436d8310a7e7c8efd7b (patch) | |
| tree | 74074d829ed8b16725c1c60e60a86f797d8fa992 /Source/Core/DSPCore | |
| parent | 6d395d3ab07ce0466881297621ce620ac5a0f2e3 (diff) | |
just a small fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4342 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPIntExtOps.cpp | 6 |
1 files 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; } |
