mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 11:55:41 -04:00
Postprocessing: Sort shader list lexiographically
This commit is contained in:
parent
ea3fa7fe3d
commit
966cce1581
@ -205,6 +205,11 @@ std::vector<std::pair<std::string, std::string>> PostProcessing::GetAvailableSha
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::sort(names.begin(), names.end(),
|
||||||
|
[](const std::pair<std::string, std::string>& lhs, const std::pair<std::string, std::string>& rhs) {
|
||||||
|
return (lhs.first < lhs.second);
|
||||||
|
});
|
||||||
|
|
||||||
return names;
|
return names;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user