1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 10:05:46 -05:00

Temporary fix to allow MIMO support for v4 releases

This commit is contained in:
f4exb 2020-11-10 14:30:13 +01:00
parent 7e0c835f8d
commit ae6e96b795

View File

@ -100,7 +100,7 @@ void MainParser::parse(const QCoreApplication& app)
{
bool ok;
int maj = versionParts.at(0).toInt(&ok);
m_mimoSupport = ok && (maj > 4);
m_mimoSupport = ok && (maj > 3);
}
else
{