GUI
This commit is contained in:
@@ -44,6 +44,16 @@ bool isPlaying(void)
|
||||
return !stop;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether playback is currently paused.
|
||||
*/
|
||||
bool isPaused(void)
|
||||
{
|
||||
if(stop)
|
||||
return false;
|
||||
return ndspChnIsPaused(CHANNEL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Should only be called from a new thread only, and have only one playback
|
||||
* thread at time. This function has not been written for more than one
|
||||
|
||||
Reference in New Issue
Block a user