From 611bd3d1420eed160463e763d29f57f6f12f3083 Mon Sep 17 00:00:00 2001 From: vk7js <58905135+vk7js@users.noreply.github.com> Date: Mon, 23 May 2022 20:53:30 +1000 Subject: [PATCH] Fixed error in announceText(): wrong flags were passed to vpQueueString --- openrtx/src/core/voicePromptUtils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrtx/src/core/voicePromptUtils.c b/openrtx/src/core/voicePromptUtils.c index 6bd61d14..180ec1c9 100644 --- a/openrtx/src/core/voicePromptUtils.c +++ b/openrtx/src/core/voicePromptUtils.c @@ -289,7 +289,7 @@ void announceText( char* text, VoicePromptQueueFlags_T flags) if (offset != -1) vpQueueStringTableEntry((const char* const *)(¤tLanguage->languageName + offset)); else // just spel it out - vpQueueString(text, (flags&~(vpqInit|vpqPlayImmediately))); + vpQueueString(text, vpAnnounceCommonSymbols); vpPlayIfNeeded(flags); }