* DiscImageChef/Commands/MediaInfo.cs:

Added a workaround for Nintendo GameCube and Wii discs.
	Added SCSI READ MEDIA SERIAL NUMBER support.

	* DiscImageChef.Devices/Device/ScsiCommands.cs:
	  Use a bigger buffer for CD-TEXT.
This commit is contained in:
2015-11-24 05:03:26 +00:00
parent c693a4191d
commit 09da786c1f
4 changed files with 59 additions and 6 deletions

View File

@@ -846,7 +846,7 @@ namespace DiscImageChef.Devices
{
senseBuffer = new byte[32];
byte[] cdb = new byte[10];
byte[] tmpBuffer = new byte[804];
byte[] tmpBuffer = new byte[1024];
bool sense;
cdb[0] = (byte)ScsiCommands.ReadTocPmaAtip;