Skip to content

Commit

Permalink
Fix C2 mode for GH24NSD5
Browse files Browse the repository at this point in the history
- C2ErrorMode.Mode294 does not work for this drive:
  LG GH24NSD5. Try Mode296 first.
- See:
  https://hydrogenaud.io/index.php/topic,125779.msg1044857.html
  • Loading branch information
c72578 committed Jun 16, 2024
1 parent f906966 commit af0e961
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 @@ -821,15 +821,15 @@ 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 BD-RE WH10LS30, HL-DT-ST DVDRAM GH22LS51,
// LG GH24NSD1,
// LG GH24NSD1, GH24NSD5,
// LITEON DH-20A4P,
// MATSHITA DVD-R UJ-868,
// 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("WH10LS30") || pathNoSpace.Contains("GH22LS51") ||
pathNoSpace.Contains("GH24NSD1") ||
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") ||
Expand Down

0 comments on commit af0e961

Please sign in to comment.