From 176b193cb9f7c4189cfa597a4dd1e683b65447cd Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 1 Jun 2016 14:32:16 -0700 Subject: [PATCH] [DATFromDir] Drop threshold to 750MiB for Romba size checking --- DATFromDir/DATFromDir.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DATFromDir/DATFromDir.cs b/DATFromDir/DATFromDir.cs index e6937654..645ac528 100644 --- a/DATFromDir/DATFromDir.cs +++ b/DATFromDir/DATFromDir.cs @@ -491,8 +491,8 @@ namespace SabreTools string gzsize = BitConverter.ToString(footer.Reverse().ToArray()).Replace("-", string.Empty); long extractedsize = Convert.ToInt64(gzsize, 16); - // Only try to add if the file size is greater than 1 GiB - if (filesize >= (Constants.GibiByte)) + // Only try to add if the file size is greater than 750 MiB + if (filesize >= (750 * Constants.MibiByte)) { // ISIZE is mod 4GiB, so we add that if the ISIZE is smaller than the filesize and header bool shouldfollowup = false;