Fix an AUX mixing issue introduced when implementing AXWii. Now FIFA 06 sounds great with AX HLE.

This commit is contained in:
Pierre Bourdon 2012-11-27 00:03:40 +01:00
parent 706939e632
commit 9b1a66245e
1 changed files with 1 additions and 1 deletions

View File

@ -392,7 +392,7 @@ void CUCode_AX::MixAUXSamples(int aux_id, u32 write_addr, u32 read_addr)
// First, we need to send the contents of our AUX buffers to the CPU.
if (write_addr)
{
for (u32 i = 0; i < 3 * 32; ++i)
for (u32 i = 0; i < 5 * 32; ++i)
for (u32 j = 0; j < 3; ++j)
temp[j][i] = Common::swap32(buffers[j][i]);
memcpy(HLEMemory_Get_Pointer(write_addr), temp, sizeof (temp));