From 27e0c7d1fbf0adb6eccd92b1ebabdf70997953a6 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Wed, 25 Oct 2017 10:43:13 +0100 Subject: [PATCH] Add the Pacific TAC1 voice prompt. --- P25Gateway/Speech.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/P25Gateway/Speech.cpp b/P25Gateway/Speech.cpp index a4a82f7..37a94e2 100644 --- a/P25Gateway/Speech.cpp +++ b/P25Gateway/Speech.cpp @@ -22,6 +22,7 @@ #include "SpeechEU.h" #include "SpeechNA.h" #include "SpeechPacific.h" +#include "SpeechPacificTAC1.h" #include "SpeechWW.h" #include @@ -128,9 +129,13 @@ void CSpeech::announce(unsigned int id) m_id = id; break; case 10400U: - case 10401U: - m_speech = SPEECH_PACIFIC; - m_count = SPEECH_PACIFIC_COUNT; + m_speech = SPEECH_PACIFIC; + m_count = SPEECH_PACIFIC_COUNT; + m_id = id; + break; + case 10401U: + m_speech = SPEECH_PACIFIC_TAC1; + m_count = SPEECH_PACIFIC_TAC1_COUNT; m_id = id; break; case 9999U: