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 62b0070dcc686abc5f17f79c3610d4c4e50ebe42
parent 8a186ee3b953f9170782fcea8f9d5bcaf5d7e9fb
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 24 Oct 2024 12:14:00 +0200

fix compile error on mac

Diffstat:
Msource/synthLib/os.cpp | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/source/synthLib/os.cpp b/source/synthLib/os.cpp @@ -439,10 +439,9 @@ namespace synthLib switch (_type) { case SpecialFolderType::UserDocuments: - return "~/Documents/" + return "~/Documents/"; case SpecialFolderType::PrivateAppData: - return "~/Library/Application Support/" - break; + return "~/Library/Application Support/"; default: return {}; }