Fix AX HLE command 12 arguments: takes 4 u16, not 1

This commit is contained in:
Pierre Bourdon 2012-12-18 06:58:47 +01:00
parent ed59f8ff1d
commit 70b3980f46
1 changed files with 10 additions and 1 deletions

View File

@ -193,7 +193,16 @@ void CUCode_AX::HandleCommandList()
break;
case CMD_UNK_11: curr_idx += 2; break;
case CMD_UNK_12: curr_idx += 1; break;
case CMD_UNK_12:
{
u16 samp_val = m_cmdlist[curr_idx++];
u16 idx = m_cmdlist[curr_idx++];
addr_hi = m_cmdlist[curr_idx++];
addr_lo = m_cmdlist[curr_idx++];
// TODO
break;
}
// Send the contents of MAIN LRS, AUXA LRS and AUXB S to RAM, and
// mix data to MAIN LR and AUXB LR.