Path table usage optional in CD-i filesystem (except for root).

This commit is contained in:
2019-07-31 23:04:37 +01:00
parent 6ab2f51178
commit 1890d6ac28

View File

@@ -321,7 +321,7 @@ namespace DiscImageChef.Filesystems.ISO9660
rootSize = rootEntry.size / fsvd.Value.logical_block_size; rootSize = rootEntry.size / fsvd.Value.logical_block_size;
if(rootEntry.size % fsvd.Value.logical_block_size > 0) rootSize++; if(rootEntry.size % fsvd.Value.logical_block_size > 0) rootSize++;
usePathTable = true; usePathTable = usePathTable || pathTable.Length == 1;
useTransTbl = false; useTransTbl = false;
} }