Skip to content

Commit

Permalink
Update SCSIDrive.cs
Browse files Browse the repository at this point in the history
Moved the added lines for the LITEON drive to between the LG and MATSHITA drives as the lines are sorted alphabetically by manufacturer.
  • Loading branch information
TomDSilva authored and c72578 committed Jun 6, 2024
1 parent 0b7b57b commit 907f88d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CUETools.Ripper.SCSI/SCSIDrive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -822,19 +822,19 @@ public unsafe bool TestReadCommand()
// 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,
// LITEON DH-20A4P,
// MATSHITA DVD-R UJ-868,
// PIONEER BDR-XD05, PIONEER BDR-XD07U, PIONEER DVR-S21,
// PLDS DU-8A5LH,
// Slimtype - DVD A DU8AESH,
// LITEON ADH20A4P9P57.
// 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("DH20A4P") ||
pathNoSpace.Contains("UJ-868") ||
pathNoSpace.Contains("BDR-XD05") || pathNoSpace.Contains("BDR-XD07U") || pathNoSpace.Contains("DVR-S21") ||
pathNoSpace.Contains("DU-8A5LH") ||
pathNoSpace.Contains("DU8AESH") ||
pathNoSpace.Contains("DH20A4P"))
pathNoSpace.Contains("DU8AESH"))
{
Array.Resize(ref c2mode, 2);
c2mode.SetValue(Device.C2ErrorMode.Mode296, 0);
Expand Down

0 comments on commit 907f88d

Please sign in to comment.