Răsfoiți Sursa

ava: Fix crash when extracting sections from NCA with no data section (#5002)

Tested against Omega Strickers.
Mary 2 ani în urmă
părinte
comite
b3bf05356b
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/Ryujinx.Ava/Common/ApplicationHelper.cs

+ 1 - 1
src/Ryujinx.Ava/Common/ApplicationHelper.cs

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