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:
parent
99db9f0fb1
commit
e71db8fe04
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue