We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 993bf91 commit f90e2d5Copy full SHA for f90e2d5
source_modules/audio_source/src/main.cpp
@@ -183,6 +183,9 @@ class AudioSourceModule : public ModuleManager::Instance {
183
static void start(void* ctx) {
184
AudioSourceModule* _this = (AudioSourceModule*)ctx;
185
if (_this->running) { return; }
186
+
187
+ // If no device is selected, give up
188
+ if (_this->selectedDevice.empty()) { return; }
189
190
// Stream options
191
RtAudio::StreamParameters parameters;
0 commit comments