Audio channels are sorted with a stable sort

This commit is contained in:
PJB3005
2026-03-27 14:54:27 +01:00
parent b01581b043
commit 967ea0c939
+1 -1
View File
@@ -82,7 +82,7 @@ static void InitChannelSortIndices() {
static void SortChannelsByUpdateCount() {
InitChannelSortIndices();
std::ranges::sort(
std::ranges::stable_sort(
channelSortIndices,
[](u8 a, u8 b) {
auto& jasChannelA = JASDSPChannel::sDspChannels[a];