From c89affd980afe3623ca15f2b44ae3d576e0e9481 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 14 May 2022 21:36:50 +0100 Subject: [PATCH] Fix vst2 plugin path in debugging docs Signed-off-by: falkTX --- docs/DEBUGGING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/DEBUGGING.md b/docs/DEBUGGING.md index 9cd5071..27abd54 100644 --- a/docs/DEBUGGING.md +++ b/docs/DEBUGGING.md @@ -12,7 +12,7 @@ By default carla-discovery will do 1 audio processing/run block for testing, whi ``` valgrind --leak-check=full --track-origins=yes --suppressions=./dpf/utils/valgrind-dpf.supp \ -/usr/lib/carla/carla-discovery-native vst2 ./bin/CardinalFX.vst/CardinalFX.so +/usr/lib/carla/carla-discovery-native vst2 ./bin/Cardinal.vst/CardinalFX.so ``` ## Plugin usage @@ -26,5 +26,5 @@ It is recommended to remove all modules from the Rack except for the strictly ne ``` env CARLA_BRIDGE_DUMMY=30 \ valgrind --leak-check=full --track-origins=yes --suppressions=./dpf/utils/valgrind-dpf.supp \ -/usr/lib/carla/carla-bridge-native vst2 ./bin/CardinalFX.vst/CardinalFX.so "" +/usr/lib/carla/carla-bridge-native vst2 ./bin/Cardinal.vst/CardinalFX.so "" ```