Oops, forgot a memset which removed all AUX effects

This commit is contained in:
Pierre Bourdon 2012-11-14 18:03:55 +01:00
parent a630357c9e
commit f84f15c5bf

View File

@ -356,7 +356,6 @@ void CUCode_NewAX::MixAUXSamples(bool AUXA, u32 write_addr, u32 read_addr)
buffers[2][i] = Common::swap32(m_samples_auxB_surround[i]); buffers[2][i] = Common::swap32(m_samples_auxB_surround[i]);
} }
} }
memset(buffers, 0, sizeof (buffers));
memcpy(HLEMemory_Get_Pointer(write_addr), buffers, sizeof (buffers)); memcpy(HLEMemory_Get_Pointer(write_addr), buffers, sizeof (buffers));
} }