Added ndspChnGetFormat

This commit is contained in:
Anh302kay 2024-01-29 22:16:11 +11:00
parent d0936b879b
commit cb3da5bd98

View File

@ -100,6 +100,11 @@ void ndspChnSetFormat(int id, u16 format)
ndspChn[id].format = format;
}
u16 ndspChnGetFormat(int id)
{
return ndspChn[id].format;
}
bool ndspChnIsPaused(int id)
{
return ndspChn[id].paused;