0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 14:48:03 +03:00

Fix boot beeps compile error

This commit is contained in:
OneOfEleven
2023-10-10 10:12:21 +01:00
parent e11c0c810c
commit d212d44ab5
4 changed files with 4 additions and 3 deletions

View File

@ -1429,6 +1429,7 @@ void APP_CheckKeys(void)
#endif
g_key_prev = key;
APP_ProcessKey(g_key_prev, true, g_key_held);
g_update_status = true;
@ -1487,7 +1488,7 @@ void APP_TimeSlice10ms(void)
}
#ifdef ENABLE_BOOT_BEEPS
if (g_boot_counter_10ms > 0 && ((g_boot_counter_10ms % 25) == 0)
if (g_boot_counter_10ms > 0 && (g_boot_counter_10ms % 25) == 0)
AUDIO_PlayBeep(BEEP_880HZ_40MS_OPTIONAL);
#endif