forked from organicmaps/organicmaps
Android. Executing a part of TurnSound functionality even if TurnSound is not available.
This commit is contained in:
parent
abf2bf8c39
commit
ab7f3cdb5a
1 changed files with 2 additions and 4 deletions
|
@ -142,11 +142,9 @@ public enum TtsPlayer
|
|||
|
||||
public void playTurnNotifications()
|
||||
{
|
||||
if (!isValid())
|
||||
return; // speak() is called while TTS is not ready or could not be initialized.
|
||||
|
||||
final String[] turnNotifications = Framework.nativeGenerateTurnSound();
|
||||
if (turnNotifications != null)
|
||||
|
||||
if (turnNotifications != null && isValid())
|
||||
for (String textToSpeak : turnNotifications)
|
||||
speak(textToSpeak);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue