Skip to content

Commit

Permalink
Fix C2 mode for BDR-UD04
Browse files Browse the repository at this point in the history
- C2ErrorMode.Mode294 does not work for this drive:
  PIONEER BD-RW BDR-UD04. Try Mode296 first.
- According to http://www.accuraterip.com/driveoffsets.htm there are
  also submissions from 'BDR-UD04D' drives, with a 'D' at the end.
  Those are included too by this commit.
- Resolves #349
  • Loading branch information
c72578 committed Sep 22, 2024
1 parent 9ed297b commit 238ebff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CUETools.Ripper.SCSI/SCSIDrive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -824,15 +824,15 @@ public unsafe bool TestReadCommand()
// LG GH24NSD1, GH24NSD5,
// LITEON DH-20A4P,
// MATSHITA DVD-R UJ-868,
// PIONEER BDR-XD05, PIONEER BDR-XD07U, PIONEER DVR-S21,
// PIONEER BD-RW BDR-UD04, BDR-XD05, BDR-XD07U, DVD-RW DVR-S21,
// PLDS DU-8A5LH,
// Slimtype - DVD A DU8AESH.
if (pathNoSpace.Contains("DRW-24D5MT") || pathNoSpace.Contains("DRW-24F1STd") ||
pathNoSpace.Contains("BU40N") || pathNoSpace.Contains("WH10LS30") || pathNoSpace.Contains("GH22LS51") ||
pathNoSpace.Contains("GH24NSD1") || pathNoSpace.Contains("GH24NSD5") ||
pathNoSpace.Contains("DH20A4P") ||
pathNoSpace.Contains("UJ-868") ||
pathNoSpace.Contains("BDR-XD05") || pathNoSpace.Contains("BDR-XD07U") || pathNoSpace.Contains("DVR-S21") ||
pathNoSpace.Contains("BDR-UD04") || pathNoSpace.Contains("BDR-XD05") || pathNoSpace.Contains("BDR-XD07U") || pathNoSpace.Contains("DVR-S21") ||
pathNoSpace.Contains("DU-8A5LH") ||
pathNoSpace.Contains("DU8AESH"))
{
Expand Down

0 comments on commit 238ebff

Please sign in to comment.