From d3282a47b250ba8c061569d43564eaaccc1aec82 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:40:17 -0700 Subject: [PATCH] info IDE0059 Unnecessary assignment of a value to 'error' --- src/Ryujinx.UI.Common/Helper/SetupValidator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.UI.Common/Helper/SetupValidator.cs b/src/Ryujinx.UI.Common/Helper/SetupValidator.cs index 5e2d3a584..0fdebed00 100644 --- a/src/Ryujinx.UI.Common/Helper/SetupValidator.cs +++ b/src/Ryujinx.UI.Common/Helper/SetupValidator.cs @@ -98,7 +98,7 @@ namespace Ryujinx.UI.Common.Helper if (baseApplicationExtension is not (".nro" or ".nso")) return IsFirmwareValid(contentManager, out error); - error = UserError.Success; + // error = UserError.Success; } error = UserError.ApplicationNotFound;