mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-08-11 22:13:43 -04:00
Merge pull request #2868 from rgetz/rgetz-fix-copypaste
vorlocalizer: Fix round robin plan sorting comparator
This commit is contained in:
@@ -652,7 +652,7 @@ void VorLocalizerWorker::getChannelsByDevice(
|
||||
bool operator()(const RRTurnPlan& a, const RRTurnPlan& b)
|
||||
{
|
||||
unsigned int nbChannelsA = a.m_channels.size();
|
||||
unsigned int nbChannelsB = a.m_channels.size();
|
||||
unsigned int nbChannelsB = b.m_channels.size();
|
||||
|
||||
if (nbChannelsA == nbChannelsB) {
|
||||
return a.m_bandwidth > b.m_bandwidth;
|
||||
|
||||
Reference in New Issue
Block a user