crashing...

This commit is contained in:
Kuba 2023-11-02 19:06:32 +00:00
parent 50791397f4
commit e2b7ba1589
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ int tx(uint32_t carrier_freq, char *audio_file, uint16_t pi, char *ps, char *rt,
} else if(pollResult.res == CONTROL_PIPE_COMPRESSORATTACK_SET) { } else if(pollResult.res == CONTROL_PIPE_COMPRESSORATTACK_SET) {
compressor_attack = std::stof(pollResult.arg); compressor_attack = std::stof(pollResult.arg);
} else if(pollResult.res == CONTROL_PIPE_CT_SET) { } else if(pollResult.res == CONTROL_PIPE_CT_SET) {
rds_ct_enabled = atoi(pollResult.arg); rds_ct_enabled = (int)pollResult.arg;
} }
} }