Browse Source

Allow configuration of Carla client name when headless

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.7
Daniel-I-Am falkTX <falktx@falktx.com> 1 year ago
parent
commit
f81036f9a9
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/frontend/carla_host.py

+ 1
- 1
source/frontend/carla_host.py View File

@@ -3554,7 +3554,7 @@ def runHostWithoutUI(host):
# Init engine

audioDriver = setEngineSettings(host, oscPort)
if not host.engine_init(audioDriver, "Carla"):
if not host.engine_init(audioDriver, CARLA_CLIENT_NAME or "Carla"):
print("Engine failed to initialize, possible reasons:\n%s" % host.get_last_error())
sys.exit(1)



Loading…
Cancel
Save