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 bda73403cfb7d26dc913bb5fe85356acff0edab2
parent bb9b02bc72eedbc3bd33b660c1b0b59c2bf625c6
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 27 Oct 2024 21:04:54 +0100

fix skin loading issues on windows

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

diff --git a/source/jucePluginLib/tools.cpp b/source/jucePluginLib/tools.cpp @@ -23,6 +23,6 @@ namespace pluginLib std::string Tools::getPublicDataFolder(const std::string& _productName) { - return synthLib::getSpecialFolderPath(synthLib::SpecialFolderType::UserDocuments) + _productName + '/'; + return synthLib::validatePath(synthLib::getSpecialFolderPath(synthLib::SpecialFolderType::UserDocuments) + _productName + '/'); } }