From 993ce492b7a577ef31d649d4ad617518a845c876 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 12 Oct 2024 01:33:16 -0400 Subject: [PATCH] Remove now-unused field from DSTool --- NDecrypt.Nitro/DSTool.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/NDecrypt.Nitro/DSTool.cs b/NDecrypt.Nitro/DSTool.cs index b243d16..f85432f 100644 --- a/NDecrypt.Nitro/DSTool.cs +++ b/NDecrypt.Nitro/DSTool.cs @@ -15,11 +15,6 @@ namespace NDecrypt.Nitro /// private readonly string filename; - /// - /// Decryption args to use while processing - /// - private readonly DecryptArgs decryptArgs; - #region Encryption process variables private uint[] _cardHash = new uint[0x412]; @@ -30,7 +25,6 @@ namespace NDecrypt.Nitro public DSTool(string filename, DecryptArgs decryptArgs) { this.filename = filename; - this.decryptArgs = decryptArgs; } #region Encrypt