Don't show audio mode on boot if it's AUDIO_MODE_MATCH_SCREEN

This commit is contained in:
Maschell 2025-02-09 10:33:17 +01:00
parent e569a3eb64
commit f9bb2b7cc2

View File

@ -337,7 +337,7 @@ INITIALIZE_PLUGIN() {
if (gCurScreenMode != SCREEN_MODE_NONE) {
NotificationModule_AddInfoNotification(screenModeToStr(gCurScreenMode));
}
if (gCurAudioMode != AUDIO_MODE_NONE) {
if (gCurAudioMode != AUDIO_MODE_NONE && gCurAudioMode != AUDIO_MODE_MATCH_SCREEN) {
NotificationModule_AddInfoNotification(audioModeToStr(gCurAudioMode));
}
}