Corrected minor bug in decoding SCSI MODE PAGE 00h.

This commit is contained in:
2017-12-21 07:23:50 +00:00
parent fba01ce718
commit 9195c7ea24

View File

@@ -113,8 +113,7 @@ namespace DiscImageChef.Decoders.SCSI
if(!page.SLM) return sb.ToString();
sb.Append("\tDrive has two LUNs with rewritable being ");
if(page.SLM) sb.AppendLine("LUN 1");
else sb.AppendLine("LUN 0");
sb.AppendLine(page.SLR ? "LUN 1" : "LUN 0");
return sb.ToString();
}