| 318 | } |
| 319 | |
| 320 | void CSND_SetPlayState(u32 channel, u32 value) |
| 321 | { |
| 322 | u32* cmdparams = csndAddCmd(0x001); |
| 323 | |
| 324 | cmdparams[0] = channel & 0x1f; |
| 325 | cmdparams[1] = value; |
| 326 | } |
| 327 | |
| 328 | void CSND_SetEncoding(u32 channel, u32 value) |
| 329 | { |
nothing calls this directly
no test coverage detected