Sort the 004 mode list alphabetically.

This commit is contained in:
Sadie Powell 2024-09-17 00:45:21 +01:00
parent dfd72fe029
commit 8649d33465

View File

@ -88,6 +88,7 @@ class CoreModInfo final
if (!needparam || mh->NeedsParam(true))
modestr.push_back(mh->GetModeChar());
}
std::sort(modestr.begin(), modestr.end());
return modestr;
}