Skip to content

Commit

Permalink
Fix C2 mode for WH10LS30
Browse files Browse the repository at this point in the history
- C2ErrorMode.Mode294 does not work for this drive:
  HL-DT-ST BD-RE WH10LS30. Try Mode296 first.
- Resolves #290
  • Loading branch information
c72578 committed Aug 15, 2023
1 parent 0853683 commit b1ddab4
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 @@ -820,13 +820,13 @@ public unsafe bool TestReadCommand()

// Mode294 does not work for these drives. Try Mode296 first, which has been reported to work:
// ASUS DRW-24D5MT, ASUS DRW-24F1ST d,
// HL-DT-ST BD-RE BU40N, HL-DT-ST DVDRAM GH22LS51,
// HL-DT-ST BD-RE BU40N, HL-DT-ST BD-RE WH10LS30, HL-DT-ST DVDRAM GH22LS51,
// LG GH24NSD1,
// PIONEER BDR-XD05, PIONEER BDR-XD07U, PIONEER DVR-S21,
// PLDS DU-8A5LH,
// Slimtype - DVD A DU8AESH.
if (pathNoSpace.Contains("DRW-24D5MT") || pathNoSpace.Contains("DRW-24F1STd") ||
pathNoSpace.Contains("BU40N") || pathNoSpace.Contains("GH22LS51") ||
pathNoSpace.Contains("BU40N") || pathNoSpace.Contains("WH10LS30") || pathNoSpace.Contains("GH22LS51") ||
pathNoSpace.Contains("GH24NSD1") ||
pathNoSpace.Contains("BDR-XD05") || pathNoSpace.Contains("BDR-XD07U") || pathNoSpace.Contains("DVR-S21") ||
pathNoSpace.Contains("DU-8A5LH") ||
Expand Down

0 comments on commit b1ddab4

Please sign in to comment.