From 960bc9797169ced48c3f3f3a660147651e59171a Mon Sep 17 00:00:00 2001 From: death2droid Date: Tue, 9 Jun 2009 01:03:03 +0000 Subject: [PATCH] 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 --- Source/Core/Core/Src/HW/DSP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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