From 42c3404d0591e8c7f629689f218e02f84122662c Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 18 Jul 2015 03:46:52 +0200 Subject: [PATCH] Run wine bridges directly now that it actually works --- data/carla-single | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/data/carla-single b/data/carla-single index 9091df9ea..145d83bfe 100755 --- a/data/carla-single +++ b/data/carla-single @@ -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)