From 14e733c09aa6607dccd74b7ce6c248920fe06cd0 Mon Sep 17 00:00:00 2001 From: Ash Date: Thu, 6 Feb 2020 16:12:55 -0500 Subject: [PATCH] Much comparison --- Ryujinx/Updater/UpdateParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Updater/UpdateParser.cs b/Ryujinx/Updater/UpdateParser.cs index e6baf1f354..a27446b349 100644 --- a/Ryujinx/Updater/UpdateParser.cs +++ b/Ryujinx/Updater/UpdateParser.cs @@ -82,7 +82,7 @@ namespace Ryujinx Version newVersion = Version.Parse(_buildVer); Version currentVersion = Version.Parse(currentVersionJson); - if (newVersion.CompareTo(currentVersion) == 0) + if (newVersion.CompareTo(currentVersion) > 0) { GtkDialog.CreateInfoDialog("Update", "Ryujinx - Updater", "You are already using the most updated version of Ryujinx!", "");