two new games & music player patch

This commit is contained in:
Eng1n33r
2022-06-21 05:50:34 +03:00
parent 79f216ec48
commit eb625f971f
10 changed files with 817 additions and 8 deletions

View File

@@ -79,7 +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_hal_get_tick() < next_tick) {
volume *= 0.9945679;
volume *= 1.0000000;
furi_hal_speaker_set_volume(volume);
furi_hal_delay_ms(2);
}