Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
698B

  1. diff --git a/src/qjackctlInterfaceComboBox.cpp b/src/qjackctlInterfaceComboBox.cpp
  2. index 049c228..9921e43 100644
  3. --- a/src/qjackctlInterfaceComboBox.cpp
  4. +++ b/src/qjackctlInterfaceComboBox.cpp
  5. @@ -228,6 +228,8 @@ private:
  6. if (PortAudioProber::names.isEmpty()) {
  7. for (PaDeviceIndex i = 0; i < iNumDevice; ++i) {
  8. PaDeviceInfo *pDeviceInfo = const_cast<PaDeviceInfo *> (Pa_GetDeviceInfo(i));
  9. + if (strcmp(pDeviceInfo->name, "JackRouter") == 0)
  10. + continue;
  11. #ifdef WIN32
  12. MultiByteToWideChar(CP_UTF8, 0, pDeviceInfo->name, -1, wideDeviceName, MAX_PATH-1);
  13. const QString sName = hostNames[pDeviceInfo->hostApi] + "::" + QString::fromWCharArray(wideDeviceName);