DiscIO: Treat game ID DTLX01 as a Datel disc
Needed for the disc mentioned in the previous commit.
This commit is contained in:
parent
6d1a344aab
commit
41adf3cd53
|
@ -136,7 +136,7 @@ Platform VolumeGC::GetVolumeType() const
|
||||||
|
|
||||||
bool VolumeGC::IsDatelDisc() 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
|
std::array<u8, 20> VolumeGC::GetSyncHash() const
|
||||||
|
|
Loading…
Reference in New Issue