Fixed error in AnnounceMenuIfNeeded, it was speaking the name twice rather than the name and value.
This commit is contained in:
parent
611bd3d142
commit
895a5ce780
|
|
@ -107,7 +107,7 @@ static void announceMenuItemIfNeeded(char* name, char* value)
|
|||
announceText(name, vpqDefault);
|
||||
|
||||
if (value && *value)
|
||||
announceText(name, vpqDefault);
|
||||
announceText(value, vpqDefault);
|
||||
|
||||
vpPlay();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue