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 07ff014ccf368fc36032c329379762a05d96cb2b
parent fe96a100e4ca925076b341414295b71f1a88f591
Author: Tal Aviram <me@talaviram.com>
Date:   Fri, 23 Jul 2021 13:11:29 +0300

Fix finding rom on macOS Standalone app.

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

diff --git a/source/synthLib/os.cpp b/source/synthLib/os.cpp @@ -76,10 +76,12 @@ namespace synthLib fixPath(".vst/"); fixPath(".vst3/"); fixPath(".component/"); + fixPath(".app/"); fixPath(".vst\\"); fixPath(".vst3\\"); fixPath(".component\\"); + fixPath(".app\\"); const auto end = path.find_last_of("/\\");