From c56ef387ac6928913d36415712c6826a5f9c3f7c Mon Sep 17 00:00:00 2001 From: Gustave Monce Date: Tue, 24 Sep 2024 21:47:22 +0200 Subject: [PATCH] fix: hardcoded FFU version --- Img2Ffu/Program.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Img2Ffu/Program.cs b/Img2Ffu/Program.cs index 1a7f1d5..8141909 100644 --- a/Img2Ffu/Program.cs +++ b/Img2Ffu/Program.cs @@ -200,9 +200,7 @@ private static void Main(string[] args) return; } - FlashUpdateVersion flashUpdateVersion = FlashUpdateVersion.V2; - - Logging.Log("Full Flash Update Version Specified: " + flashUpdateVersion); + Logging.Log("Full Flash Update Version Specified: " + o.FlashUpdateVersion); Logging.Log("Number of Stores Specified: " + inputFiles.Count()); Logging.Log(""); @@ -239,7 +237,7 @@ private static void Main(string[] args) o.BlockSize, o.AntiTheftVersion, o.OperatingSystemVersion, - flashUpdateVersion, + o.FlashUpdateVersion, deviceTargetingInformations, logging); }