Fix Null audio driver

master
Noah 2023-12-09 14:59:56 -08:00
parent fa6eb3d3a0
commit d0ed23cf73
1 changed files with 5 additions and 0 deletions

View File

@ -71,6 +71,11 @@ func (p Playable) Play(loops int) error {
return nil
}
// Playing?
func (p Playable) Playing() bool {
return false
}
// Pause nothing
func (p Playable) Pause() error {
return nil