DiscIO/RiivolutionPatcher: Skip main.dol patches if no main.dol was given.

This commit is contained in:
Admiral H. Curtiss 2022-06-08 23:07:15 +02:00
parent fa30ba18f5
commit 9e5bc98496
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB

View file

@ -397,7 +397,7 @@ static void ApplyFilePatchToFST(const Patch& patch, const File& file,
if (node)
ApplyPatchToFile(patch, file, node);
}
else if (CaseInsensitiveEquals(file.m_disc, "main.dol"))
else if (dol_node && CaseInsensitiveEquals(file.m_disc, "main.dol"))
{
// Special case: If the filename is "main.dol", we want to patch the main executable.
ApplyPatchToFile(patch, file, dol_node);