mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 23:25:57 +01:00
2019-06-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in caed(8) that caused mixer commands to be applied with inverted sign.
This commit is contained in:
@@ -162,7 +162,7 @@ void CaeServer::readyReadData(int id)
|
||||
ProcessCommand(id,cae_connections.value(id)->accum);
|
||||
}
|
||||
else {
|
||||
if(isalnum(0xFF&data[i])||(c=='_')||(c==' ')) {
|
||||
if(isalnum(0xFF&data[i])||(c=='_')||(c=='-')||(c==' ')) {
|
||||
cae_connections.value(id)->accum+=0xFF&data[i];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user