Browse Source

Fix engine name for nogui mode, fixes #529

tags/1.9.8
falkTX 7 years ago
parent
commit
56331214dc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/carla_host.py

+ 1
- 1
source/carla_host.py View File

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

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



Loading…
Cancel
Save