From f9bb2b7cc20ee0e549d3eb008228a8ee41db9059 Mon Sep 17 00:00:00 2001 From: Maschell <Maschell@gmx.de> Date: Sun, 9 Feb 2025 10:33:17 +0100 Subject: [PATCH] Don't show audio mode on boot if it's AUDIO_MODE_MATCH_SCREEN --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 278afbe..2f01cc0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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)); } }