Fix analysis and style formatting errors #31

Closed
qurious-pixel wants to merge 6 commits from patch-1 into master
Showing only changes of commit 116fe1d577 - Show all commits

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