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 5c398bddd196efdbec360c588aff13fe4bdd3948
parent db589075ec1f148b653f4002444a8373b931e2b5
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat,  4 May 2024 11:06:53 +0200

fix name of local storage source not displayed in patch info

Diffstat:
Msource/jucePluginEditorLib/patchmanager/info.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/source/jucePluginEditorLib/patchmanager/info.cpp b/source/jucePluginEditorLib/patchmanager/info.cpp @@ -147,6 +147,8 @@ namespace jucePluginEditorLib::patchManager case pluginLib::patchDB::SourceType::Rom: case pluginLib::patchDB::SourceType::Folder: return _source->name; + case pluginLib::patchDB::SourceType::LocalStorage: + return _source->name; case pluginLib::patchDB::SourceType::File: { auto t = _source->name;