2019-08-26 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in caed(8) that broke timescaling support.
This commit is contained in:
Fred Gleason 2019-08-26 19:05:39 -04:00
parent ffe62e4c88
commit 945aae0297
2 changed files with 4 additions and 2 deletions

View File

@ -18967,3 +18967,5 @@
* Added a '--rewrite' directive in rdalsaconfig(8).
2019-08-26 Fred Gleason <fredg@paravelsystems.com>
* Added an rdalsaconfig(1) man page.
2019-08-26 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in caed(8) that broke timescaling support.

View File

@ -714,10 +714,10 @@ void MainObject::timescalingSupportData(int id,unsigned card)
break;
}
if(state) {
cae_server->sendCommand(id,"TS +!");
cae_server->sendCommand(id,QString().sprintf("TS %u +!",card));
}
else {
cae_server->sendCommand(id,"TS -!");
cae_server->sendCommand(id,QString().sprintf("TS %u -!",card));
}
}