Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
devgianlu committed Apr 3, 2024
1 parent b4affdc commit 805fb7d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions output/driver_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,14 @@ func (out *output) SetVolume(vol float32) {
out.volume = vol
}

func (c *output) Drop() error {
return nil
}

func (c *output) DelayMs() (int64, error) {
return 0, nil
}

func (out *output) WaitDone() <-chan error {
out.cond.L.Lock()
defer out.cond.L.Unlock()
Expand Down

0 comments on commit 805fb7d

Please sign in to comment.