Merge pull request #8931 from JosJuice/use-isdateldisc

DiscIO: Use Volume::IsDatelDisc in VolumeVerifier
This commit is contained in:
Tilka 2020-07-05 10:37:11 +01:00 committed by GitHub
commit 23ecda7ed0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -386,8 +386,7 @@ void VolumeVerifier::Start()
m_redump_verifier.Start(m_volume);
m_is_tgc = m_volume.GetBlobType() == BlobType::TGC;
m_is_datel = IsDisc(m_volume.GetVolumeType()) &&
!GetBootDOLOffset(m_volume, m_volume.GetGamePartition()).has_value();
m_is_datel = m_volume.IsDatelDisc();
m_is_not_retail =
(m_volume.GetVolumeType() == Platform::WiiDisc && !m_volume.IsEncryptedAndHashed()) ||
IsDebugSigned();