mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-13 17:40:18 +00:00
27 lines
No EOL
690 B
C#
27 lines
No EOL
690 B
C#
using Ryujinx.Ui.App.Common;
|
|
using System;
|
|
using System.Collections;
|
|
|
|
namespace Ryujinx.Ava.Ui.Models
|
|
{
|
|
internal class LastPlayedSortComparer : IComparer
|
|
{
|
|
public int Compare(object x, object y)
|
|
{
|
|
string aValue = (x as ApplicationData).LastPlayed;
|
|
string bValue = (y as ApplicationData).LastPlayed;
|
|
|
|
if (aValue == "Never")
|
|
{
|
|
aValue = DateTime.UnixEpoch.ToString();
|
|
}
|
|
|
|
if (bValue == "Never")
|
|
{
|
|
bValue = DateTime.UnixEpoch.ToString();
|
|
}
|
|
|
|
return DateTime.Compare(DateTime.Parse(bValue), DateTime.Parse(aValue));
|
|
}
|
|
}
|
|
} |