Add console print when Check loads from config

This commit is contained in:
Matt Nadareski
2025-10-18 13:08:32 -04:00
parent d2ed2f81ae
commit fae399f8bc
2 changed files with 6 additions and 0 deletions

View File

@@ -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)

View File

@@ -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();