Skip to content

Commit

Permalink
Remove useless comment
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergodart authored Aug 13, 2024
1 parent 39dca26 commit 1f40f7b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sequencer/sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ func (s *sequencer) ToggleStep(track, step int) {
}

// CopyStep copies a step to the 'clipboard' step.
// TODO: Double check this, had some AI help with pointers
func (s *sequencer) CopyStep(track, srcStep int) {
if track < 0 || track >= len(s.tracks) || srcStep < 0 || srcStep >= len(s.tracks[track].steps) {
return // Out of bounds, do nothing
Expand Down

0 comments on commit 1f40f7b

Please sign in to comment.