diff --git a/src/Audio/AudioOutput.cc b/src/Audio/AudioOutput.cc index fe6234aeffdce5693d5eb448cb858bab4a60f7cb..6fb95195df2ca92d80a4f9d07903206dca0b0d06 100644 --- a/src/Audio/AudioOutput.cc +++ b/src/Audio/AudioOutput.cc @@ -125,6 +125,9 @@ QString AudioOutput::fixTextMessageForAudio(const QString& string) { if(result.contains("PREARM", Qt::CaseInsensitive)) { result.replace("PREARM", "pre arm", Qt::CaseInsensitive); } + if(result.contains("PITOT", Qt::CaseInsensitive)) { + result.replace("PITOT", "pee toe", Qt::CaseInsensitive); + } // Convert negative numbers QRegularExpression re(QStringLiteral("(-)[0-9]*\\.?[0-9]"));