Browse Source

Cleanup

tags/1.9.4
falkTX 11 years ago
parent
commit
5a4c018d73
2 changed files with 2 additions and 9 deletions
  1. +0
    -7
      source/carla.py
  2. +2
    -2
      source/carla_backend.py

+ 0
- 7
source/carla.py View File

@@ -968,13 +968,6 @@ class CarlaMainW(QMainWindow):
self.fPluginCount = 0
self.fPluginList = []

if Carla.processMode == PROCESS_MODE_CONTINUOUS_RACK:
maxCount = MAX_RACK_PLUGINS
elif Carla.processMode == PROCESS_MODE_PATCHBAY:
maxCount = MAX_PATCHBAY_PLUGINS
else:
maxCount = MAX_DEFAULT_PLUGINS

if transportMode == TRANSPORT_MODE_JACK and audioDriver != "JACK":
transportMode = TRANSPORT_MODE_INTERNAL



+ 2
- 2
source/carla_backend.py View File

@@ -895,8 +895,8 @@ class Host(object):
def get_sample_rate(self):
return self.lib.carla_get_sample_rate()

def nsm_announce(self, url, appName, pid):
self.lib.carla_nsm_announce(url.encode("utf-8"), appName.encode("utf-8"), pid)
def nsm_announce(self, url, appName_, pid):
self.lib.carla_nsm_announce(url.encode("utf-8"), appName_.encode("utf-8"), pid)

def nsm_reply_open(self):
self.lib.carla_nsm_reply_open()


Loading…
Cancel
Save