From d162fa6ade19f7fe6f86cbaee781e7167b8a73ec Mon Sep 17 00:00:00 2001 From: hrydgard Date: Fri, 3 Oct 2008 18:59:57 +0000 Subject: [PATCH] Added comment that Addr__AXOutSBuffer_2 contains the destination address for mixing in RAM. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@758 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp index 7ce32e6d0a..d436e3aaa7 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_AX.cpp @@ -523,6 +523,9 @@ bool CUCode_AX::AXTask(u32& _uMail) case 0x000e: Addr__AXOutSBuffer_1 = Memory_Read_U32(uAddress); uAddress += 4; + + // Addr__AXOutSBuffer_2 is the address in RAM that we are supposed to mix to. + // Although we don't, currently. Addr__AXOutSBuffer_2 = Memory_Read_U32(uAddress); uAddress += 4; DebugLog("AXLIST sbuf2 addresses: %08x %08x", Addr__AXOutSBuffer_1, Addr__AXOutSBuffer_2);