From 068d607c3a0bd5ae07fe13b275fbd792875e8dcd Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 31 Jul 2014 15:02:11 +0100 Subject: [PATCH] Really fix #115 --- source/backend/CarlaStandalone.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/backend/CarlaStandalone.cpp b/source/backend/CarlaStandalone.cpp index db05a81c3..dd92cd60d 100644 --- a/source/backend/CarlaStandalone.cpp +++ b/source/backend/CarlaStandalone.cpp @@ -223,7 +223,9 @@ protected: fClientId = clientId; - fProjectPath = projectPath; + fProjectPath = juce::File::getCurrentWorkingDirectory().getFullPathName().toRawUTF8(); + fProjectPath += OS_SEP_STR; + fProjectPath += projectPath; fProjectPath += ".carxp"; CARLA_SAFE_ASSERT_RETURN(gStandalone.engine != nullptr, 0);