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; } } }