| 383 | } |
| 384 | |
| 385 | void CSND_SetVol(u32 channel, u32 chnVolumes, u32 capVolumes) |
| 386 | { |
| 387 | u32* cmdparams = csndAddCmd(0x009); |
| 388 | |
| 389 | cmdparams[0] = channel & 0x1f; |
| 390 | cmdparams[1] = chnVolumes; |
| 391 | cmdparams[2] = capVolumes; |
| 392 | } |
| 393 | |
| 394 | void CSND_SetAdpcmState(u32 channel, int block, int sample, int index) |
| 395 | { |
nothing calls this directly
no test coverage detected