This commit is contained in:
2015-10-30 01:16:21 +00:00
parent 0c1dc0e9f2
commit 2031122b9a
2 changed files with 6 additions and 1 deletions

View File

@@ -1992,7 +1992,7 @@ namespace DiscImageChef.Decoders.SCSI
if (pageResponse == null)
return null;
if ((pageResponse[0] & 0x3F) != 0x05)
if ((pageResponse[0] & 0x3F) != 0x03)
return null;
if (pageResponse[1] + 2 != pageResponse.Length)