mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:38:33 +00:00
ava: Fix crash when extracting sections from NCA with no data section (#5002)
Tested against Omega Strickers.
This commit is contained in:
parent
cb4b58052f
commit
b3bf05356b
|
@ -193,7 +193,7 @@ namespace Ryujinx.Ava.Common
|
|||
if (nca.Header.ContentType == NcaContentType.Program)
|
||||
{
|
||||
int dataIndex = Nca.GetSectionIndexFromType(NcaSectionType.Data, NcaContentType.Program);
|
||||
if (nca.Header.GetFsHeader(dataIndex).IsPatchSection())
|
||||
if (nca.SectionExists(NcaSectionType.Data) && nca.Header.GetFsHeader(dataIndex).IsPatchSection())
|
||||
{
|
||||
patchNca = nca;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue