Browse Source

Run wine bridges directly now that it actually works

tags/1.9.7
falkTX 9 years ago
parent
commit
42c3404d05
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      data/carla-single

+ 4
- 6
data/carla-single View File

@@ -244,12 +244,10 @@ else:

command = []

if ARCH in ("win32", "win64"):
# FIXME win bridges don't work nicely with JACK right now
#command.append("wine")

BRIDGE = BRIDGE.replace("%s.exe" % ARCH, "native")
os.environ["CARLA_BRIDGE_PLUGIN_BINARY_TYPE"] = ARCH
if ARCH == "win32":
command.append("wine")
elif ARCH == "win64":
command.append("wine64")

command.append(BRIDGE)
command.append(FORMAT)


Loading…
Cancel
Save