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 1ec821a9fc79ecdea90010e0071d827aa1d27d5d
parent cc6568088e90dc2fec23e4571f06392ddaa662e2
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat, 14 Dec 2024 12:14:59 +0100

fix linux compile error

Diffstat:
Msource/baseLib/filesystem.cpp | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/source/baseLib/filesystem.cpp b/source/baseLib/filesystem.cpp @@ -123,7 +123,8 @@ namespace baseLib::filesystem } else { - LOG("Failed to open directory " << _folder << ", error " << errno); +// LOG("Failed to open directory " << _folder << ", error " << errno); + std::cerr << "Failed to open directory " << _folder << ", error " << errno << '\n'; return false; } #else