mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-27 14:41:45 +02:00
2019-06-13 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdalsaconfig(8) that caused the device list to be incorrectly sorted.
This commit is contained in:
parent
7e915ffe0e
commit
5d7e82e540
@ -18765,3 +18765,6 @@
|
|||||||
2019-06-13 Fred Gleason <fredg@paravelsystems.com>
|
2019-06-13 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rdlibrary(1) that caused the cut list in the
|
* Fixed a bug in rdlibrary(1) that caused the cut list in the
|
||||||
'Edit Cart' dialog to be incorrectly sorted.
|
'Edit Cart' dialog to be incorrectly sorted.
|
||||||
|
2019-06-13 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rdalsaconfig(8) that caused the device list
|
||||||
|
to be incorrectly sorted.
|
||||||
|
@ -183,7 +183,7 @@ void RDAlsa::LoadSystemConfig()
|
|||||||
if(snd_ctl_pcm_info(snd_ctl,pcm_info)==0) {
|
if(snd_ctl_pcm_info(snd_ctl,pcm_info)==0) {
|
||||||
pcm=0;
|
pcm=0;
|
||||||
while(pcm>=0) {
|
while(pcm>=0) {
|
||||||
pcms.push_back(QString().sprintf("%s [%u]",
|
pcms.push_back(QString().sprintf("%s [%02u]",
|
||||||
(const char *)snd_pcm_info_get_name(pcm_info),pcm+1));
|
(const char *)snd_pcm_info_get_name(pcm_info),pcm+1));
|
||||||
snd_ctl_pcm_next_device(snd_ctl,&pcm);
|
snd_ctl_pcm_next_device(snd_ctl,&pcm);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user