From cd6a2258a81dbf161b8abc439da6208fcf222627 Mon Sep 17 00:00:00 2001 From: Ambrose Bonnaire-Sergeant Date: Tue, 20 Feb 2024 00:16:17 -0600 Subject: [PATCH] XQ_Drum Converter.jsfx: Fix SD mode --- MIDI/XQ_Drum Converter.jsfx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIDI/XQ_Drum Converter.jsfx b/MIDI/XQ_Drum Converter.jsfx index 5f578efc..7dea6786 100644 --- a/MIDI/XQ_Drum Converter.jsfx +++ b/MIDI/XQ_Drum Converter.jsfx @@ -188,7 +188,7 @@ function convert(n) gm_drum_note(n) ? ( sl_out_map==OUT_AD ? r=gm_to_ad(n); sl_out_map==OUT_BFD ? r=gm_to_bfd(n); - sl_out_map==OUT_SD ? r=gm_to_ad(n); + sl_out_map==OUT_SD ? r=gm_to_sd(n); ) : r=-1; r; );