From 41adf3cd538410f089db71e1e3916b1dba3d78fd Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 12 Mar 2022 22:27:58 +0100 Subject: [PATCH] DiscIO: Treat game ID DTLX01 as a Datel disc Needed for the disc mentioned in the previous commit. --- Source/Core/DiscIO/VolumeGC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 VolumeGC::GetSyncHash() const