mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Merge pull request #1030 from CookiePLMonster/fix-bios-comparator
Fix bios comparator
This commit is contained in:
commit
3dce0d654a
|
@ -20,7 +20,7 @@ static void populateDropDownForRegion(ConsoleRegion region, QComboBox* cb,
|
||||||
const bool right_region_match = (right.second && right.second->region == region);
|
const bool right_region_match = (right.second && right.second->region == region);
|
||||||
if (left_region_match && !right_region_match)
|
if (left_region_match && !right_region_match)
|
||||||
return true;
|
return true;
|
||||||
else if (right_region_match && left_region_match)
|
else if (right_region_match && !left_region_match)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return left.first < right.first;
|
return left.first < right.first;
|
||||||
|
|
Loading…
Reference in a new issue