forked from Mirror/Ryujinx
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
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ namespace Ryujinx.Ava.Common
|
||||||
if (nca.Header.ContentType == NcaContentType.Program)
|
if (nca.Header.ContentType == NcaContentType.Program)
|
||||||
{
|
{
|
||||||
int dataIndex = Nca.GetSectionIndexFromType(NcaSectionType.Data, 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;
|
patchNca = nca;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue