Skip to content

Commit 8987b3b

Browse files
committed
Update dpf, fix a few paths
Signed-off-by: falkTX <falktx@falktx.com>
1 parent b54b21b commit 8987b3b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

plugins/Common/IldaeilPlugin.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,15 @@ static const char* getPathForVST2()
155155
{
156156
path += ":" + winePrefix + "/drive_c/Program Files/Common Files/VST2";
157157
path += ":" + winePrefix + "/drive_c/Program Files/VstPlugins";
158+
path += ":" + winePrefix + "/drive_c/Program Files/VSTPlugins";
158159
path += ":" + winePrefix + "/drive_c/Program Files/Steinberg/VstPlugins";
160+
path += ":" + winePrefix + "/drive_c/Program Files/Steinberg/VSTPlugins";
159161
#ifdef CARLA_OS_64BIT
160162
path += ":" + winePrefix + "/drive_c/Program Files (x86)/Common Files/VST2";
161163
path += ":" + winePrefix + "/drive_c/Program Files (x86)/VstPlugins";
164+
path += ":" + winePrefix + "/drive_c/Program Files (x86)/VSTPlugins";
162165
path += ":" + winePrefix + "/drive_c/Program Files (x86)/Steinberg/VstPlugins";
166+
path += ":" + winePrefix + "/drive_c/Program Files (x86)/Steinberg/VSTPlugins";
163167
#endif
164168
}
165169
#endif
@@ -175,7 +179,7 @@ static const char* getPathForVST3()
175179
if (path.isEmpty())
176180
{
177181
#if defined(CARLA_OS_HAIKU)
178-
path = getHomePath() + "/.vst3:/system/add-ons/media/dssiplugins";
182+
path = getHomePath() + "/.vst3:/system/add-ons/media/vst3plugins";
179183
#elif defined(CARLA_OS_MAC)
180184
path = getHomePath() + "/Library/Audio/Plug-Ins/VST3:/Library/Audio/Plug-Ins/VST3";
181185
#elif defined(CARLA_OS_WASM)

0 commit comments

Comments
 (0)