Added disk geometry.

This commit is contained in:
2017-08-02 23:01:11 +01:00
parent 959d979230
commit 08425e9ccc
31 changed files with 831 additions and 91 deletions

View File

@@ -410,6 +410,10 @@ namespace DiscImageChef.ImagePlugins
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("CopyQM comments: {0}", ImageInfo.imageComments);
ImageInfo.heads = header.heads;
ImageInfo.cylinders = header.imageCylinders;
ImageInfo.sectorsPerTrack = header.sectorsPerTrack;
return true;
}