Commit 232893e0 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

winealsa.drv: Use the plughw instead of the hw interface for opening devices.

parent 0625d439
...@@ -285,7 +285,7 @@ static HRESULT alsa_get_card_devices(snd_pcm_stream_t stream, WCHAR **ids, char ...@@ -285,7 +285,7 @@ static HRESULT alsa_get_card_devices(snd_pcm_stream_t stream, WCHAR **ids, char
continue; continue;
} }
sprintf(devnode, "hw:%d,%d", card, device); sprintf(devnode, "plughw:%d,%d", card, device);
if(!alsa_try_open(devnode, stream)){ if(!alsa_try_open(devnode, stream)){
if(count_failed) if(count_failed)
++(*num); ++(*num);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment