Removed the 2 in the linked to message, it sounded odd.

This commit is contained in:
Jonathan Naylor 2020-04-21 21:31:29 +01:00
parent 00342c763a
commit 1542c9750d
2 changed files with 3 additions and 5 deletions

View file

@ -141,12 +141,10 @@ void CDynVoice::linkedTo(unsigned int number)
::sprintf(letters, "%u", number);
std::vector<std::string> words;
if (m_positions.count("linkedto") == 0U) {
if (m_positions.count("linkedto") == 0U)
words.push_back("linked");
words.push_back("2");
} else {
else
words.push_back("linkedto");
}
for (unsigned int i = 0U; letters[i] != '\0'; i++)
words.push_back(std::string(1U, letters[i]));

View file

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20200418";
const char* VERSION = "20200421";
#endif