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 bb0161de91435ab14701f7a35c589d9a131164e5
parent bb4d1ea9d5e0232e3e6a348a8df6d1b529c77a24
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon, 20 May 2024 14:33:13 +0200

fix warning

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

diff --git a/source/jucePluginEditorLib/patchmanager/patchmanager.cpp b/source/jucePluginEditorLib/patchmanager/patchmanager.cpp @@ -513,7 +513,7 @@ namespace jucePluginEditorLib::patchManager patchData.push_back(patchSysex); } - if(!getEditor().savePresets(type, name, patchData)) + if(!Editor::savePresets(type, name, patchData)) juce::NativeMessageBox::showMessageBox(juce::AlertWindow::WarningIcon, "Save failed", "Failed to write data to " + _file.getFullPathName().toStdString()); #endif }