From 74f74ac9288828243b93a96dc9dd4b1857219f06 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 4 Jul 2020 20:24:26 +0200 Subject: [PATCH] DiscIO: Use Volume::IsDatelDisc in VolumeVerifier I forgot to do this in the PR where I added Volume::IsDatelDisc. --- Source/Core/DiscIO/VolumeVerifier.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 9a8617c166..00e850071a 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -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();