aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Models/Generic
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ava/Ui/Models/Generic')
-rw-r--r--Ryujinx.Ava/Ui/Models/Generic/LastPlayedSortComparer.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Ryujinx.Ava/Ui/Models/Generic/LastPlayedSortComparer.cs b/Ryujinx.Ava/Ui/Models/Generic/LastPlayedSortComparer.cs
deleted file mode 100644
index 7e26cfbf..00000000
--- a/Ryujinx.Ava/Ui/Models/Generic/LastPlayedSortComparer.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using Ryujinx.Ava.Common.Locale;
-using Ryujinx.Ui.App.Common;
-using System;
-using System.Collections.Generic;
-
-namespace Ryujinx.Ava.Ui.Models.Generic
-{
- internal class LastPlayedSortComparer : IComparer<ApplicationData>
- {
- public LastPlayedSortComparer() { }
- public LastPlayedSortComparer(bool isAscending) { IsAscending = isAscending; }
-
- public bool IsAscending { get; }
-
- public int Compare(ApplicationData x, ApplicationData y)
- {
- string aValue = x.LastPlayed;
- string bValue = y.LastPlayed;
-
- if (aValue == LocaleManager.Instance["Never"])
- {
- aValue = DateTime.UnixEpoch.ToString();
- }
-
- if (bValue == LocaleManager.Instance["Never"])
- {
- bValue = DateTime.UnixEpoch.ToString();
- }
-
- return (IsAscending ? 1 : -1) * DateTime.Compare(DateTime.Parse(bValue), DateTime.Parse(aValue));
- }
- }
-} \ No newline at end of file