diff options
| -rw-r--r-- | metronome.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metronome.c b/metronome.c index 2882307..b39fc6d 100644 --- a/metronome.c +++ b/metronome.c @@ -193,7 +193,7 @@ int main(int argc, char *argv[]) return 1; } - if (snd_pcm_open(&pcm_handle, /*"default"*/ "plughw:1,0", SND_PCM_STREAM_PLAYBACK, 0) < 0) { + if (snd_pcm_open(&pcm_handle, "default", SND_PCM_STREAM_PLAYBACK, 0) < 0) { printf("Failed opening device\n"); return 1; } |
