Skip to content

Commit f52e25f

Browse files
committed
Minor changes.
1 parent 687c32a commit f52e25f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

LibIPS.NET/LibIpsNet.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,14 +280,14 @@ public IpsError Create(Stream source, Stream target, ref Stream patch)
280280
byteshere = 0;
281281
}
282282
// RLE-worthy despite two IPS headers.
283-
if (byteshere > 8 + 5 ||
284-
// RLE-worthy at end of data.
285-
(byteshere > 8 && stopat + byteshere == thislen) ||
283+
if (byteshere > 8 + 5 ||
284+
// RLE-worthy at end of data.
285+
(byteshere > 8 && stopat + byteshere == thislen) ||
286286
(byteshere > 8 && !Compare(targetReader, (offset + stopat + byteshere), targetReader, (offset + stopat + byteshere + 1), 9 - 1)))//rle-worthy before another rle-worthy
287287
{
288288
if (stopat != 0) thislen = stopat;
289289
// We don't scan the entire block if we know we'll want to RLE, that'd gain nothing.
290-
break;
290+
break;
291291
}
292292
}
293293

0 commit comments

Comments
 (0)