diff --git a/CHANGELIST.md b/CHANGELIST.md index f6343d87..ed2ad242 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -26,6 +26,7 @@ - Add 8 more language menu items - Add basic translation for 8 more languages - Make Check flags toggle if config used +- Add console print when Check loads from config ### 3.5.0 (2025-10-10) diff --git a/MPF.Check/Features/MainFeature.cs b/MPF.Check/Features/MainFeature.cs index 526318aa..922bb5f1 100644 --- a/MPF.Check/Features/MainFeature.cs +++ b/MPF.Check/Features/MainFeature.cs @@ -1,3 +1,4 @@ +using System; using MPF.Frontend; using MPF.Frontend.Tools; using SabreTools.CommandLine.Inputs; @@ -150,6 +151,10 @@ namespace MPF.Check.Features RedumpPassword = null, }; } + else + { + Console.WriteLine("Options will be loaded from found configuration file!"); + } // The first argument is the system type System = args[0].Trim('"').ToRedumpSystem();