Fix build without liblo

This commit is contained in:
falkTX 2022-02-06 12:25:56 +00:00
parent f78879f3e2
commit 5bc42b2d1f

View file

@ -463,6 +463,7 @@ namespace patchUtils {
bool connectToRemote() {
#ifdef HAVE_LIBLO
rack::app::Scene::Internal* const internal = APP->scene->internal;
if (internal->oscServer == nullptr) {
@ -478,6 +479,9 @@ bool connectToRemote() {
lo_address_free(addr);
return true;
#else
return false;
#endif
}