From 98bc9a32162af4c3bbb076e1aa21df91d14d4abd Mon Sep 17 00:00:00 2001 From: BinaryBond007 Date: Mon, 6 Jul 2020 11:39:36 -0400 Subject: [PATCH] Fix "No Files!" bug when selecting soundfont from OSD --- menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu.cpp b/menu.cpp index 097ce9d..73229e9 100644 --- a/menu.cpp +++ b/menu.cpp @@ -2524,7 +2524,7 @@ void HandleUI(void) { if(GetUARTMode() == 3 && GetMidiLinkMode() == 0) { - sprintf(Selected_tmp, "/linux/soundfonts"); + sprintf(Selected_tmp, "linux/soundfonts"); SelectFile(Selected_tmp, "SF2", SCANO_DIR | SCANO_TXT, MENU_SFONT_FILE_SELECTED, MENU_UART1); } }