More sensible VRAM sorting thing
Some checks failed
.NET Build and Publish to Gitea / build (push) Has been cancelled
Some checks failed
.NET Build and Publish to Gitea / build (push) Has been cancelled
This commit is contained in:
@@ -235,11 +235,17 @@ public class Pair : DisposableMediatorSubscriberBase
|
||||
{
|
||||
string? noteOrName = GetNoteOrName();
|
||||
|
||||
if (noteOrName != null)
|
||||
if (_mareConfig.Current.SortSyncshellsByVRAM)
|
||||
{
|
||||
return($"0{LastAppliedApproximateVRAMBytes}");
|
||||
}
|
||||
else if (noteOrName != null) {
|
||||
return $"0{noteOrName}";
|
||||
else
|
||||
}
|
||||
else {
|
||||
return $"9{UserData.AliasOrUID}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string GetPlayerNameHash()
|
||||
{
|
||||
|
Reference in New Issue
Block a user