DiscIO: Treat game ID DTLX01 as a Datel disc

Needed for the disc mentioned in the previous commit.
This commit is contained in:
JosJuice 2022-03-12 22:27:58 +01:00
parent 6d1a344aab
commit 41adf3cd53
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ Platform VolumeGC::GetVolumeType() const
bool VolumeGC::IsDatelDisc() const
{
return !GetBootDOLOffset(*this, PARTITION_NONE).has_value();
return GetGameID() == "DTLX01" || !GetBootDOLOffset(*this, PARTITION_NONE).has_value();
}
std::array<u8, 20> VolumeGC::GetSyncHash() const