audio: Bug fix: Compile error

This commit is contained in:
Hajime Hoshi 2021-10-22 15:35:05 +09:00
parent d9967c53e5
commit 5b768679a3

View File

@ -51,6 +51,10 @@ func (c *dummyContext) Resume() error {
return nil
}
func (c *dummyContext) Err() error {
return nil
}
func (p *dummyPlayer) Pause() {
p.m.Lock()
p.playing = false