mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2018-07-17 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdadmin(1) that caused the Audio Resources list to be mal-formatted. * Fixed a bug in rdcatch(1) that caused Record and Playout events to be saved to the incorrect Location.
This commit is contained in:
@@ -124,11 +124,11 @@ ViewAdapters::ViewAdapters(RDStation *rdstation,QWidget *parent)
|
||||
for(int i=0;i<RD_MAX_CARDS;i++) {
|
||||
if(rdstation->cardName(i).isEmpty()) {
|
||||
text+=QString(" ")+tr("Card")+QString().sprintf(" %d: ",i)+
|
||||
tr("Not present");
|
||||
tr("Not present")+"\n";
|
||||
}
|
||||
else {
|
||||
text+=QString(" ")+tr("Card")+QString().sprintf(" %d: ",i)+
|
||||
rdstation->cardName(i);
|
||||
rdstation->cardName(i)+"\n";
|
||||
switch(rdstation->cardDriver(i)) {
|
||||
case RDStation::Hpi:
|
||||
text+=tr(" Driver: AudioScience HPI\n");
|
||||
@@ -151,6 +151,7 @@ ViewAdapters::ViewAdapters(RDStation *rdstation,QWidget *parent)
|
||||
text+=QString(" ")+tr("Outputs")+
|
||||
QString().sprintf(" %d\n",rdstation->cardOutputs(i));
|
||||
}
|
||||
text+="\n";
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
Reference in New Issue
Block a user