Skip to content

Commit fdd5acc

Browse files
committed
fix: grammar/style in MIDI import tempo change option
1 parent 8bda037 commit fdd5acc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/draw_window_midi_import/draw_window_midi_import.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function draw_window_midi_import() {
2424
if (draw_radiobox(x1 + 52, y1 + 32 + 40, w_midi_name_patch, "...after patches", "If the layers should be named\nafter the instruments in the MIDI file.", !w_midi_name) && wmenu = 0) w_midi_name_patch = 1
2525
if (draw_radiobox(x1 + 52, y1 + 32 + 60, !w_midi_name_patch, "...channel numbers", "If the layers should be named\nafter the channels in the MIDI file.", !w_midi_name) && wmenu = 0) w_midi_name_patch = 0
2626
if (draw_checkbox(x1 + 260, y1 + 32, w_midi_tempo, "Same tempo as in file", "Set the song's tempo to match\nthe one of the MIDI file.") && wmenu = 0) w_midi_tempo=!w_midi_tempo
27-
if (draw_checkbox(x1 + 410, y1 + 32, w_midi_tempo_changer, "Tempo changes", "Whether to add tempo changesfound in the MIDI file.\nTempo changers are not supported in game and most NBS-compatible softwares.") && wmenu = 0) {w_midi_tempo_changer=!w_midi_tempo_changer}
27+
if (draw_checkbox(x1 + 410, y1 + 32, w_midi_tempo_changer, "Tempo changes", "Whether to add tempo changes found in the MIDI file.\nTempo changes are not supported in-game and in most NBS-compatible tools.") && wmenu = 0) {w_midi_tempo_changer=!w_midi_tempo_changer}
2828
draw_text_dynamic(x1 + 260, y1 + 52, "Max. channel height:")
2929
popup_set_window(x1 + 260, y1 + 52, 140, 16, "The maximum allowed layers per channel.\nClick and drag to adjust.")
3030
w_midi_maxheight = median(1, draw_dragvalue(1, x1 + 380, y1 + 52, w_midi_maxheight, 1), 20)

0 commit comments

Comments
 (0)