Fix bios comparator

This commit is contained in:
Silent 2020-11-01 13:12:04 +01:00
parent b5b1c725c1
commit 4ef70ef2aa
No known key found for this signature in database
GPG Key ID: AE53149BB0C45AF1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ static void populateDropDownForRegion(ConsoleRegion region, QComboBox* cb,
const bool right_region_match = (right.second && right.second->region == region);
if (left_region_match && !right_region_match)
return true;
else if (right_region_match && left_region_match)
else if (right_region_match && !left_region_match)
return false;
return left.first < right.first;