mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: All refactor in DiscImageChef.DiscImages.
This commit is contained in:
@@ -99,10 +99,7 @@ namespace DiscImageChef.DiscImages
|
||||
|
||||
extension = Path.GetExtension(imageFilter.GetFilename())?.ToLower();
|
||||
|
||||
int[] offsets;
|
||||
|
||||
if(extension == ".do") offsets = dosOffsets;
|
||||
else offsets = prodosOffsets;
|
||||
int[] offsets = extension == ".do" ? dosOffsets : prodosOffsets;
|
||||
|
||||
for(int t = 0; t < 35; t++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user