summaryrefslogtreecommitdiff
path: root/tests/record.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/record.cpp')
-rw-r--r--tests/record.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/record.cpp b/tests/record.cpp
index d16ea49..0e48f77 100644
--- a/tests/record.cpp
+++ b/tests/record.cpp
@@ -117,7 +117,10 @@ int main( int argc, char *argv[] )
// Set our stream parameters for input only.
bufferFrames = 512;
RtAudio::StreamParameters iParams;
- iParams.deviceId = device;
+ if ( device == 0 )
+ iParams.deviceId = adc.getDefaultInputDevice();
+ else
+ iParams.deviceId = device;
iParams.nChannels = channels;
iParams.firstChannel = offset;