Browse Source

Remove "unsupported" from JACK driver name. It's still not really supported, but we could at some point.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
7f44c6d706
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rtaudio.cpp

+ 1
- 1
src/rtaudio.cpp View File

@@ -218,7 +218,7 @@ struct RtAudioDriver : audio::Driver {
std::string getName() override {
static const std::map<RtAudio::Api, std::string> apiNames = {
{RtAudio::LINUX_ALSA, "ALSA"},
{RtAudio::UNIX_JACK, "JACK (unsupported)"},
{RtAudio::UNIX_JACK, "JACK"},
{RtAudio::LINUX_PULSE, "PulseAudio"},
{RtAudio::LINUX_OSS, "OSS"},
{RtAudio::WINDOWS_WASAPI, "WASAPI"},


Loading…
Cancel
Save