mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 23:05:12 +00:00
Fix comments to make more sense
This commit is contained in:
@@ -572,7 +572,7 @@ namespace SabreTools.Serialization.Wrappers
|
||||
bool spanPrev = Array.Exists(files, f => f.FolderIndex == FolderIndex.CONTINUED_FROM_PREV || f.FolderIndex == FolderIndex.CONTINUED_PREV_AND_NEXT);
|
||||
bool spanNext = Array.Exists(files, f => f.FolderIndex == FolderIndex.CONTINUED_TO_NEXT || f.FolderIndex == FolderIndex.CONTINUED_PREV_AND_NEXT);
|
||||
|
||||
// Check if the folder spans backward
|
||||
// If the folder spans backward and Prev is not being skipped
|
||||
CFDATA[] prevBlocks = [];
|
||||
if (!skipPrev && spanPrev)
|
||||
{
|
||||
@@ -589,7 +589,7 @@ namespace SabreTools.Serialization.Wrappers
|
||||
}
|
||||
}
|
||||
|
||||
// Check if the folder spans forward
|
||||
// If the folder spans forward and Next is not being skipped
|
||||
CFDATA[] nextBlocks = [];
|
||||
if (!skipNext && spanNext)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user