Browse Source

Give custom message in about page when liblo/osc is not enabled

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
cc6d4281cd
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      source/backend/CarlaStandalone.cpp

+ 2
- 2
source/backend/CarlaStandalone.cpp View File

@@ -2232,7 +2232,7 @@ const char* carla_get_host_osc_url_tcp(CarlaHostHandle handle)
static const char* const notAvailable = "(OSC TCP port not available)";
return notAvailable;
#else
return gNullCharPtr;
return "(OSC support not available in this build)";

// unused
(void)handle;
@@ -2260,7 +2260,7 @@ const char* carla_get_host_osc_url_udp(CarlaHostHandle handle)
static const char* const notAvailable = "(OSC UDP port not available)";
return notAvailable;
#else
return gNullCharPtr;
return "(OSC support not available in this build)";

// unused
(void)handle;


Loading…
Cancel
Save