From 116fe1d57783f27cea70d6e40c32d02f0a35282a Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Tue, 22 Oct 2024 02:51:26 -0700 Subject: [PATCH] info IDE0059 --- src/Ryujinx.UI.Common/Helper/SetupValidator.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx.UI.Common/Helper/SetupValidator.cs b/src/Ryujinx.UI.Common/Helper/SetupValidator.cs index 0fdebed00..8fac2600e 100644 --- a/src/Ryujinx.UI.Common/Helper/SetupValidator.cs +++ b/src/Ryujinx.UI.Common/Helper/SetupValidator.cs @@ -98,12 +98,14 @@ namespace Ryujinx.UI.Common.Helper if (baseApplicationExtension is not (".nro" or ".nso")) return IsFirmwareValid(contentManager, out error); - // error = UserError.Success; + error = UserError.Success; + + return true; } error = UserError.ApplicationNotFound; - return error is UserError.Success; + return false; } } }