Postprocessing: Sort shader list lexiographically

pull/3232/head
Stenzek 8 months ago
parent ea3fa7fe3d
commit 966cce1581
No known key found for this signature in database

@ -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;
}

Loading…
Cancel
Save