Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
fix last played comparer
Browse files Browse the repository at this point in the history
  • Loading branch information
emmauss committed Feb 2, 2022
1 parent a55e875 commit 13d62f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Ryujinx.Ava/Ui/Models/LastPlayedSortComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public class LastPlayedSortComparer : IComparer
{
public int Compare(object? x, object? y)
{
string aValue = (x as ApplicationData).TimePlayed;
string bValue = (y as ApplicationData).TimePlayed;
string aValue = (x as ApplicationData).LastPlayed;
string bValue = (y as ApplicationData).LastPlayed;

if (aValue == "Never")
{
Expand Down

0 comments on commit 13d62f4

Please sign in to comment.