Enable separated protection info output by default

This commit is contained in:
Matt Nadareski
2022-10-11 10:11:48 -07:00
parent 1dd5c0d6d0
commit b10cf8b78a
2 changed files with 2 additions and 1 deletions

View File

@@ -136,6 +136,7 @@
- Add dumping info section skeleton
- Update Aaru submodules
- Fix missing info reference change
- Enable separated protection info output by default
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

@@ -302,7 +302,7 @@ namespace MPF.Core.Data
/// </summary>
public bool OutputSeparateProtectionFile
{
get { return GetBooleanSetting(_settings, "OutputSeparateProtectionFile", false); }
get { return GetBooleanSetting(_settings, "OutputSeparateProtectionFile", true); }
set { _settings["OutputSeparateProtectionFile"] = value.ToString(); }
}