File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
SabreTools.Serialization/Wrappers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -572,7 +572,7 @@ private static CompressionType GetCompressionType(CFFOLDER folder)
572572 bool spanPrev = Array . Exists ( files , f => f . FolderIndex == FolderIndex . CONTINUED_FROM_PREV || f . FolderIndex == FolderIndex . CONTINUED_PREV_AND_NEXT ) ;
573573 bool spanNext = Array . Exists ( files , f => f . FolderIndex == FolderIndex . CONTINUED_TO_NEXT || f . FolderIndex == FolderIndex . CONTINUED_PREV_AND_NEXT ) ;
574574
575- // Check if the folder spans backward
575+ // If the folder spans backward and Prev is not being skipped
576576 CFDATA [ ] prevBlocks = [ ] ;
577577 if ( ! skipPrev && spanPrev )
578578 {
@@ -589,7 +589,7 @@ private static CompressionType GetCompressionType(CFFOLDER folder)
589589 }
590590 }
591591
592- // Check if the folder spans forward
592+ // If the folder spans forward and Next is not being skipped
593593 CFDATA [ ] nextBlocks = [ ] ;
594594 if ( ! skipNext && spanNext )
595595 {
You can’t perform that action at this time.
0 commit comments