Closed VasilievSerg closed 2 years ago
Hello, Looks like the LoadBootEntries method performs invalid ordering.
LoadBootEntries
private void LoadBootEntries() { .... mBootEntries = mBootEntries.OrderBy(e => e.Value) .OrderByDescending(e => e.Value.HasValue) .ToDictionary(e => e.Key, e => e.Value); .... }
Most likely, there should be the ThenByDescendinginvocation instead of OrderByDescending. Here is the link.
ThenByDescending
OrderByDescending
Thanks, should be fixed by https://github.com/CosmosOS/IL2CPU/pull/144
Hello, Looks like the
LoadBootEntries
method performs invalid ordering.Most likely, there should be the
ThenByDescending
invocation instead ofOrderByDescending
. Here is the link.