| 359 | } |
| 360 | |
| 361 | void CSND_SetInterp(u32 channel, bool interp) |
| 362 | { |
| 363 | u32* cmdparams = csndAddCmd(0x006); |
| 364 | |
| 365 | cmdparams[0] = channel & 0x1f; |
| 366 | cmdparams[1] = interp ? 1 : 0; |
| 367 | } |
| 368 | |
| 369 | void CSND_SetDuty(u32 channel, CSND_DutyCycle duty) |
| 370 | { |
nothing calls this directly
no test coverage detected