| 343 | } |
| 344 | |
| 345 | void CSND_SetLooping(u32 channel, u32 value) |
| 346 | { |
| 347 | u32* cmdparams = csndAddCmd(0x004); |
| 348 | |
| 349 | cmdparams[0] = channel & 0x1f; |
| 350 | cmdparams[1] = value; |
| 351 | } |
| 352 | |
| 353 | void CSND_SetBit7(u32 channel, bool set) |
| 354 | { |
nothing calls this directly
no test coverage detected