From 1ff647b70135de79895382460bbefd56b477e06a Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Fri, 18 Sep 2020 13:05:29 +0100 Subject: [PATCH] Add the missing "to" the Dynamic TG voice. --- DynVoice.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DynVoice.cpp b/DynVoice.cpp index 7643163..46d1e04 100644 --- a/DynVoice.cpp +++ b/DynVoice.cpp @@ -141,10 +141,12 @@ void CDynVoice::linkedTo(unsigned int number) ::sprintf(letters, "%u", number); std::vector words; - if (m_positions.count("linkedto") == 0U) + if (m_positions.count("linkedto") == 0U) { words.push_back("linked"); - else + words.push_back("2"); + } else { words.push_back("linkedto"); + } for (unsigned int i = 0U; letters[i] != '\0'; i++) words.push_back(std::string(1U, letters[i]));