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

md1702
vk7js 2022-05-23 20:53:30 +10:00 zatwierdzone przez Silvano Seva
rodzic d57700c607
commit 611bd3d142
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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);
}