mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
audio: bug fix: test failures
This commit is contained in:
parent
a516a5b092
commit
7232b1a8a9
@ -104,6 +104,10 @@ func (p *dummyPlayer) Err() error {
|
|||||||
func (p *dummyPlayer) SetBufferSize(bufferSize int) {
|
func (p *dummyPlayer) SetBufferSize(bufferSize int) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *dummyPlayer) Seek(offset int64, whence int) (int64, error) {
|
||||||
|
return 0, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (p *dummyPlayer) Close() error {
|
func (p *dummyPlayer) Close() error {
|
||||||
p.m.Lock()
|
p.m.Lock()
|
||||||
defer p.m.Unlock()
|
defer p.m.Unlock()
|
||||||
|
Loading…
Reference in New Issue
Block a user