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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/gotracker/goaudiofile

go 1.15
go 1.18

require github.com/pkg/errors v0.9.1
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
2 changes: 1 addition & 1 deletion music/tracked/it/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (f IMPMFlags) IsLinearSlides() bool {

// IsOldEffects returns true if old-style effects are enabled
func (f IMPMFlags) IsOldEffects() bool {
return (f & IMPMFlagLinearSlides) != 0
return (f & IMPMFlagOldEffects) != 0
}

// IsEFGLinking returns true if effect E/F/G linking is enabled
Expand Down
1 change: 1 addition & 0 deletions music/tracked/mod/util_linux.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux
// +build linux

package mod
Expand Down
1 change: 1 addition & 0 deletions music/tracked/mod/util_win.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

package mod
Expand Down