Update music_player_worker.c

This commit is contained in:
RogueMaster
2022-10-13 15:25:29 -04:00
committed by GitHub
parent 437dab9ce7
commit 9cf7da86f1
@@ -79,8 +79,7 @@ static int32_t music_player_worker_thread_callback(void* context) {
furi_hal_speaker_stop();
furi_hal_speaker_start(frequency, volume);
while(instance->should_work && furi_get_tick() < next_tick) {
// volume *= 0.9945679;
volume *= 1.0000000;
volume *= 0.9945679;
furi_hal_speaker_set_volume(volume);
furi_delay_ms(2);
}