| 351 | } |
| 352 | |
| 353 | void CSND_SetBit7(u32 channel, bool set) |
| 354 | { |
| 355 | u32* cmdparams = csndAddCmd(0x005); |
| 356 | |
| 357 | cmdparams[0] = channel & 0x1f; |
| 358 | cmdparams[1] = set ? 1 : 0; |
| 359 | } |
| 360 | |
| 361 | void CSND_SetInterp(u32 channel, bool interp) |
| 362 | { |
nothing calls this directly
no test coverage detected