mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02: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