From fae399f8bc1bdc4229f1c272a48388efcd31eb6d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 18 Oct 2025 13:08:32 -0400 Subject: [PATCH] Add console print when Check loads from config --- CHANGELIST.md | 1 + MPF.Check/Features/MainFeature.cs | 5 +++++ 2 files changed, 6 insertions(+) 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();