pull/1841/head
Jon Beniston 2023-09-23 21:31:25 +01:00
rodzic 6e514435ac
commit dc40fac021
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -302,7 +302,7 @@ void PSK31Encoder::addCode(unsigned& bits, unsigned int& bitCount, const QString
unsigned int codeLen = code.size();
for (unsigned int i = 0; i < codeLen; i++) {
codeBits |= (code[i] == "1" ? 1 : 0) << i;
codeBits |= (code[i] == '1' ? 1 : 0) << i;
}
addStartBits(bits, bitCount);