* DiscImageChef.DiscImages/CDRWin.cs:

Corrected return of CD+G data, should return all 2448 bytes.

	* DiscImageChef.Partitions/AppleMap.cs:
	  Do not continue checking APM on CDs with incorrect sector
	  size. It is buggy and needs a lot of retesting.
This commit is contained in:
2016-08-09 15:31:44 +01:00
parent 0de296b512
commit beeaf4110f
5 changed files with 60 additions and 3 deletions

View File

@@ -1802,8 +1802,8 @@ namespace DiscImageChef.ImagePlugins
case CDRWinTrackTypeCDG:
{
sector_offset = 0;
sector_size = 2352;
sector_skip = 96;
sector_size = 2448;
sector_skip = 0;
break;
}
default: