From 62933489ad6b80a6f14c4f219eb5e415a8e93b03 Mon Sep 17 00:00:00 2001 From: Elias Date: Sat, 27 Nov 2021 01:44:10 +0100 Subject: [PATCH] fix default sf2/3 path --- source/frontend/carla_shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontend/carla_shared.py b/source/frontend/carla_shared.py index bca89c84b..18b619878 100644 --- a/source/frontend/carla_shared.py +++ b/source/frontend/carla_shared.py @@ -472,7 +472,7 @@ else: DEFAULT_VST3_PATH += ":/usr/local/lib/vst3" DEFAULT_SF2_PATH = HOME + "/.sounds/sf2" - DEFAULT_SF2_PATH += HOME + ":/.sounds/sf3" + DEFAULT_SF2_PATH += ":" + HOME + "/.sounds/sf3" DEFAULT_SF2_PATH += ":/usr/share/sounds/sf2" DEFAULT_SF2_PATH += ":/usr/share/sounds/sf3" DEFAULT_SF2_PATH += ":/usr/share/soundfonts"