mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Finally CD-Text on lead-in is getting decoded correctly...
This commit is contained in:
@@ -846,9 +846,14 @@ namespace DiscImageChef.Devices
|
||||
{
|
||||
senseBuffer = new byte[32];
|
||||
byte[] cdb = new byte[10];
|
||||
byte[] tmpBuffer = new byte[1024];
|
||||
byte[] tmpBuffer;
|
||||
bool sense;
|
||||
|
||||
if(format == 5)
|
||||
tmpBuffer = new byte[32768];
|
||||
else
|
||||
tmpBuffer = new byte[1024];
|
||||
|
||||
cdb[0] = (byte)ScsiCommands.ReadTocPmaAtip;
|
||||
if (MSF)
|
||||
cdb[1] = 0x02;
|
||||
|
||||
Reference in New Issue
Block a user