diff options
| author | death2droid <death2droid@gmail.com> | 2009-06-09 01:03:03 +0000 |
|---|---|---|
| committer | death2droid <death2droid@gmail.com> | 2009-06-09 01:03:03 +0000 |
| commit | 960bc9797169ced48c3f3f3a660147651e59171a (patch) | |
| tree | 5630bfa70a39dedfbfa42edeb71c6de770a6c6bc /Source/Core | |
| parent | 2122da5cd2b21aa6965c749181a32699219438ff (diff) | |
Just a small fix to sound in Wii games.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3384 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/HW/DSP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Src/HW/DSP.cpp b/Source/Core/Core/Src/HW/DSP.cpp index 6370173361..feaa74eefa 100644 --- a/Source/Core/Core/Src/HW/DSP.cpp +++ b/Source/Core/Core/Src/HW/DSP.cpp @@ -639,7 +639,7 @@ u8 ReadARAM(u32 _iAddress) } else { - return g_ARAM[_iAddress & ARAM_MASK]; + return g_ARAM[_iAddress]; } } else |
