Boost all message letters to upper case, even if tx6 editing is not 'finished'.

This commit is contained in:
Joe Taylor 2018-12-27 14:44:50 -05:00
parent ba83ae0587
commit cabd6bc869
1 changed files with 1 additions and 0 deletions

View File

@ -4013,6 +4013,7 @@ void MainWindow::ba2msg(QByteArray ba, char message[]) //ba2msg()
int iz=ba.length();
for(int i=0; i<37; i++) {
if(i<iz) {
if(int(ba[i])>=97 and int(ba[i])<=122) ba[i]=int(ba[i])-32;
message[i]=ba[i];
} else {
message[i]=32;