still not cpp

This commit is contained in:
Kuba 2024-03-26 14:12:42 +01:00 committed by GitHub
parent 7008d3e56b
commit 529f0893a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ ResultAndArg poll_control_pipe(int log) {
resarg.res = CONTROL_PIPE_COMPRESSORMAXGAINRECIP_SET;
resarg.arg = arg;
} else if(fifo[0] == 'L' && fifo[1] == 'I' && fifo[2] == 'M') {
if(std::stof(arg) < 4) {
if(atof(arg) < 4) {
if(log==1) {
printf("Set Limiter Threshold to ");
printf(arg);