From d5df62aabb1be8c0bf1752672cad6d229fbdad4a Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Sun, 31 Dec 2023 17:08:35 +0100 Subject: [PATCH] refactor: Clarify AFV sounds in NotificationPlayer --- src/blackmisc/audio/notificationsounds.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/blackmisc/audio/notificationsounds.h b/src/blackmisc/audio/notificationsounds.h index e692e4684..adc52a4cd 100644 --- a/src/blackmisc/audio/notificationsounds.h +++ b/src/blackmisc/audio/notificationsounds.h @@ -36,6 +36,10 @@ namespace BlackMisc::Audio PTTClickKeyDown = 1 << 7, PTTClickKeyUp = 1 << 8, // 1 << 9 previously used for PTTBlocked + + // AFVClicked and AFVBlocked are not played back from the notification player itself (except for preview playback). + // Instead, they are provided from BlackSound::SampleProvider::Samples. + // They are included here to allow to disable playing them. AFVClicked = 1 << 14, AFVBlocked = 1 << 15 };