1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Fix for Qt6

This commit is contained in:
Jon Beniston 2023-09-23 21:31:25 +01:00
parent 6e514435ac
commit dc40fac021

View File

@ -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);