ExportDOL: ActionReplay has a 0'd dol offset. Don't try to extract.

This commit is contained in:
booto 2018-08-02 03:29:01 -04:00
parent 14e156c292
commit 800c1570ea
1 changed files with 7 additions and 1 deletions

View File

@ -263,7 +263,13 @@ std::optional<u64> GetBootDOLOffset(const Volume& volume, const Partition& parti
if (!IsDisc(volume_type))
return {};
return volume.ReadSwappedAndShifted(0x420, partition);
std::optional<u64> dol_offset = volume.ReadSwappedAndShifted(0x420, partition);
// Datel AR disc has 0x00000000 as the offset (invalid) and doesn't use it in the AppLoader.
if (dol_offset && *dol_offset == 0)
dol_offset.reset();
return dol_offset;
}
std::optional<u32> GetBootDOLSize(const Volume& volume, const Partition& partition, u64 dol_offset)