summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeGC.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-03-12 22:27:58 +0100
committerJosJuice <josjuice@gmail.com>2022-03-12 22:27:58 +0100
commit41adf3cd538410f089db71e1e3916b1dba3d78fd (patch)
tree963a2ec24b08cb9aedcabcbc0e5b74673abdb53c /Source/Core/DiscIO/VolumeGC.cpp
parent6d1a344aabbd827f38545dc6d1f2d97838180765 (diff)
DiscIO: Treat game ID DTLX01 as a Datel disc
Needed for the disc mentioned in the previous commit.
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeGC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp
index beeaa15677..6c7c8d8a9a 100644
--- a/Source/Core/DiscIO/VolumeGC.cpp
+++ b/Source/Core/DiscIO/VolumeGC.cpp
@@ -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