From 5448d86cc21ffa8dd6a8bb3560b2c86e3013f7b6 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 15 May 2016 12:17:11 -0700 Subject: [PATCH] This caused more issues than before. Commenting out for the time being until a better solution is found. --- SabreHelper/RomManipulation.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SabreHelper/RomManipulation.cs b/SabreHelper/RomManipulation.cs index 37c4368f..8eb9ccfc 100644 --- a/SabreHelper/RomManipulation.cs +++ b/SabreHelper/RomManipulation.cs @@ -471,6 +471,7 @@ namespace SabreTools.Helper Int64.TryParse(xtr.GetAttribute("size"), out size); } + /* // Take care of hex-sized offsets long offset = -1; if (xtr.GetAttribute("offset") != null && xtr.GetAttribute("offset").Contains("0x")) @@ -487,6 +488,7 @@ namespace SabreTools.Helper { size += offset; } + */ // Sanitize the hashes from null, hex sizes, and "true blank" strings string crc = (xtr.GetAttribute("crc") != null ? xtr.GetAttribute("crc").ToLowerInvariant().Trim() : "");