In UCode_AX.cpp in function HandleCommandList() - case CMD_MIX_AUXB_NOWRITE should have 1 being passed, not false, as the aux ID in MixAUXSamples.

This commit is contained in:
Lioncash 2014-02-23 17:14:45 -05:00
parent 99db9f0fb1
commit e71db8fe04
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ void CUCode_AX::HandleCommandList()
case CMD_MIX_AUXB_NOWRITE:
addr_hi = m_cmdlist[curr_idx++];
addr_lo = m_cmdlist[curr_idx++];
MixAUXSamples(false, 0, HILO_TO_32(addr));
MixAUXSamples(1, 0, HILO_TO_32(addr));
break;
case CMD_COMPRESSOR_TABLE_ADDR: curr_idx += 2; break;