From 895a5ce780b2af88242446cbdbf7867f596646d8 Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Mon, 23 May 2022 20:57:15 +1000 Subject: [PATCH] Fixed error in AnnounceMenuIfNeeded, it was speaking the name twice rather than the name and value. --- openrtx/src/ui/ui_menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openrtx/src/ui/ui_menu.c b/openrtx/src/ui/ui_menu.c index 62b87053..10f91fd9 100644 --- a/openrtx/src/ui/ui_menu.c +++ b/openrtx/src/ui/ui_menu.c @@ -106,8 +106,8 @@ static void announceMenuItemIfNeeded(char* name, char* value) if (!voicePromptWasPlaying || !value || !*value) announceText(name, vpqDefault); - if (value && *value) - announceText(name, vpqDefault); + if (value && *value) + announceText(value, vpqDefault); vpPlay(); }