Fixed error in AnnounceMenuIfNeeded, it was speaking the name twice rather than the name and value.

This commit is contained in:
vk7js 2022-05-23 20:57:15 +10:00 committed by Silvano Seva
parent 611bd3d142
commit 895a5ce780
1 changed files with 2 additions and 2 deletions

View File

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