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 18adceb68fbbc14956d8e31b9e5033ec4906b8d2
parent a84920ea80ed7ed7b217f666f2c56b03ee9c1f12
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 27 Oct 2024 16:50:21 +0100

streamline path separators displayed in skins menu

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

diff --git a/source/jucePluginEditorLib/pluginEditorState.cpp b/source/jucePluginEditorLib/pluginEditorState.cpp @@ -83,7 +83,7 @@ void PluginEditorState::getPerInstanceConfig(std::vector<uint8_t>& _data) std::string PluginEditorState::getSkinFolder() const { - return pluginLib::Tools::getPublicDataFolder(m_processor.getProperties().name) + "skins/"; + return synthLib::validatePath(pluginLib::Tools::getPublicDataFolder(m_processor.getProperties().name) + "skins/"); } void PluginEditorState::loadSkin(const Skin& _skin)