summaryrefslogtreecommitdiff
path: root/RtAudio.cpp
diff options
context:
space:
mode:
authorgaryscavone <garyscavone@users.noreply.github.com>2022-07-03 12:04:51 -0400
committergaryscavone <garyscavone@users.noreply.github.com>2022-07-03 12:04:51 -0400
commitf2415d09ccbfcee9012256bee49bd3985a1dbeaf (patch)
treecf69d2c290ac92b704c601a80873dc76e721c155 /RtAudio.cpp
parent3778256d848ac40069ef25528a071b3d8ec9b905 (diff)
Changed errorType to WARNING if jack_client_open() fails, since the instance will still work if the jack server is subsequently started.
Diffstat (limited to 'RtAudio.cpp')
-rw-r--r--RtAudio.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp
index d020048..c56a78c 100644
--- a/RtAudio.cpp
+++ b/RtAudio.cpp
@@ -2578,7 +2578,8 @@ void RtApiJack :: probeDevices( void )
if ( client == 0 ) {
deviceList_.clear(); // in case the server is shutdown after a previous successful probe
errorText_ = "RtApiJack::probeDevices: Jack server not found or connection error!";
- error( RTAUDIO_SYSTEM_ERROR );
+ //error( RTAUDIO_SYSTEM_ERROR );
+ error( RTAUDIO_WARNING );
return;
}