Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build linux
// +build linux
//go:build !windows
// +build !windows

package mod

Expand Down
4 changes: 2 additions & 2 deletions music/tracked/xm/instheader.go
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ func readInstrumentHeader(r io.Reader) (*InstrumentHeader, error) {

// convert the sample in the background
if (s.Flags & SampleFlag16Bit) != 0 {
go convertSample16Bit(s.SampleData)
convertSample16Bit(s.SampleData)
} else {
go convertSample8Bit(s.SampleData)
convertSample8Bit(s.SampleData)
}
}
return ih, nil
Expand Down