mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-25 05:54:57 +00:00
Merge pull request #103 from lioncash/mixaux-correction
Pass 1, not false to MixAUXSamples' case "CMD_MIX_AUXB_NOWRITE" as the aux ID in UCode_AX.cpp.
This commit is contained in:
commit
68ce2cf453
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ void CUCode_AX::HandleCommandList()
|
||||||
case CMD_MIX_AUXB_NOWRITE:
|
case CMD_MIX_AUXB_NOWRITE:
|
||||||
addr_hi = m_cmdlist[curr_idx++];
|
addr_hi = m_cmdlist[curr_idx++];
|
||||||
addr_lo = 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;
|
break;
|
||||||
|
|
||||||
case CMD_COMPRESSOR_TABLE_ADDR: curr_idx += 2; break;
|
case CMD_COMPRESSOR_TABLE_ADDR: curr_idx += 2; break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue