Fixed error in announceText(): wrong flags were passed to vpQueueString

This commit is contained in:
vk7js 2022-05-23 20:53:30 +10:00 committed by Silvano Seva
parent d57700c607
commit 611bd3d142
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ void announceText( char* text, VoicePromptQueueFlags_T flags)
if (offset != -1)
vpQueueStringTableEntry((const char* const *)(&currentLanguage->languageName + offset));
else // just spel it out
vpQueueString(text, (flags&~(vpqInit|vpqPlayImmediately)));
vpQueueString(text, vpAnnounceCommonSymbols);
vpPlayIfNeeded(flags);
}