From 0957b760842d54e2515f277b3f886e8b15128822 Mon Sep 17 00:00:00 2001 From: MelonSpeedruns Date: Thu, 6 Feb 2020 16:35:58 -0500 Subject: [PATCH] Fixed building --- Ryujinx/Ui/AboutWindow.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Ryujinx/Ui/AboutWindow.cs b/Ryujinx/Ui/AboutWindow.cs index cfe12be5eb..bde1593d69 100644 --- a/Ryujinx/Ui/AboutWindow.cs +++ b/Ryujinx/Ui/AboutWindow.cs @@ -49,11 +49,6 @@ namespace Ryujinx.Ui string currentVersionJson; string currentVersionBranch; string currentVersionPr; - var VersionJSON = JObject.Parse(File.ReadAllText(System.IO.Path.Combine(Environment.CurrentDirectory, "Version.json"))); - var _JRoot = VersionJSON[""]; - currentVersionJson = (string)_JRoot["BuildVer"]; - currentVersionPr = (string)_JRoot["BuildPR"]; - currentVersionBranch = (string)_JRoot["BuildBranch"]; JObject VersionJSON = JObject.Parse(File.ReadAllText(System.IO.Path.Combine(Environment.CurrentDirectory, "Version.json")));