aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs')
-rw-r--r--Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs b/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
index b322ed64..98caceb5 100644
--- a/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
+++ b/Ryujinx.Ava/UI/Models/Generic/LastPlayedSortComparer.cs
@@ -17,12 +17,12 @@ namespace Ryujinx.Ava.UI.Models.Generic
string aValue = x.LastPlayed;
string bValue = y.LastPlayed;
- if (aValue == LocaleManager.Instance["Never"])
+ if (aValue == LocaleManager.Instance[LocaleKeys.Never])
{
aValue = DateTime.UnixEpoch.ToString();
}
- if (bValue == LocaleManager.Instance["Never"])
+ if (bValue == LocaleManager.Instance[LocaleKeys.Never])
{
bValue = DateTime.UnixEpoch.ToString();
}