Explorar el Código

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

Tested against Omega Strickers.
Mary hace 2 años
padre
commit
b3bf05356b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
                                 }