info IDE0059

This commit is contained in:
qurious-pixel 2024-10-22 02:51:26 -07:00 committed by GitHub
parent c1ace5c5e1
commit 116fe1d577
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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