summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authordeath2droid <death2droid@gmail.com>2009-06-09 01:03:03 +0000
committerdeath2droid <death2droid@gmail.com>2009-06-09 01:03:03 +0000
commit960bc9797169ced48c3f3f3a660147651e59171a (patch)
tree5630bfa70a39dedfbfa42edeb71c6de770a6c6bc /Source/Core
parent2122da5cd2b21aa6965c749181a32699219438ff (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.cpp2
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