| 375 | } |
| 376 | |
| 377 | void CSND_SetTimer(u32 channel, u32 timer) |
| 378 | { |
| 379 | u32* cmdparams = csndAddCmd(0x008); |
| 380 | |
| 381 | cmdparams[0] = channel & 0x1f; |
| 382 | cmdparams[1] = timer; |
| 383 | } |
| 384 | |
| 385 | void CSND_SetVol(u32 channel, u32 chnVolumes, u32 capVolumes) |
| 386 | { |
nothing calls this directly
no test coverage detected