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:
M | source/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 + '/'); } }