fix thinko in MidiView::pick_visible_channel() ... no data, channel is 0, not 16

This commit is contained in:
Paul Davis
2025-06-16 10:47:25 -06:00
parent 1230e1258d
commit 9342886e48

View File

@@ -368,7 +368,8 @@ MidiView::pick_visible_channel () const
++n;
}
return n;
/* no data present, just use the first MIDI channel */
return 0;
}
void