| 123456789101112131415161718192021222324252627 |
- 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));
- }
- }
- }
|