gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 2fe4788d61747a1999dfb1a9338e0c1e7be94f64
parent ea519fa570438087b10a0fe58242fd28f8f236f3
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon, 21 Mar 2022 00:34:19 +0100

fix export not exported to current module path but to current working directory

Diffstat:
Msource/jucePlugin/PluginEditor.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePlugin/PluginEditor.cpp b/source/jucePlugin/PluginEditor.cpp @@ -168,7 +168,7 @@ void AudioPluginAudioProcessorEditor::exportCurrentSkin() const if(!editor) return; - const auto res = editor->exportToFolder("skins/"); + const auto res = editor->exportToFolder(synthLib::getModulePath() + "skins/"); if(!res.empty()) {