aica: initialize regs with half-words

This commit is contained in:
Flyinghead 2019-09-11 14:54:24 +02:00
parent e1368f9713
commit b2ee35f82e
1 changed files with 2 additions and 2 deletions

View File

@ -434,8 +434,8 @@ struct ChannelEx
{
ccd=(ChannelCommonData*)&ccd_raw[cn*0x80];
ChannelNumber = cn;
for (u32 i=0;i<0x80;i++)
RegWrite(i, 1);
for (u32 i = 0; i < 0x80; i += 2)
RegWrite(i, 2);
disable();
}
void disable()