* DiscImageChef/Commands/MediaInfo.cs:

DCB was incorrectly being asked to HD DVD instead of DVD+.

	* DiscImageChef.Decoders/DVD/CSS&CPRM.cs:
	  Must return value.
This commit is contained in:
2015-12-01 04:25:01 +00:00
parent 06f00c93f9
commit 94f14feeb7
4 changed files with 19 additions and 7 deletions

View File

@@ -138,6 +138,8 @@ namespace DiscImageChef.Decoders.DVD
cmi.RegionInformation = response[5];
cmi.Reserved3 = response[6];
cmi.Reserved4 = response[7];
return cmi;
}
public static string PrettifyLeadInCopyright(LeadInCopyright? cmi)