| 592 | } |
| 593 | |
| 594 | Result csndIsPlaying(u32 channel, u8* status) |
| 595 | { |
| 596 | Result ret; |
| 597 | CSND_ChnInfo entry; |
| 598 | |
| 599 | ret = csndGetState(channel, &entry); |
| 600 | if(R_FAILED(ret))return ret; |
| 601 | |
| 602 | *status = entry.active; |
| 603 | |
| 604 | return 0; |
| 605 | } |
nothing calls this directly
no test coverage detected