From 4ba58ea861d31976692a7d04fa38324eec7fd677 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 10 Feb 2022 11:54:25 -0800 Subject: [PATCH] Make FillFromRedump private again --- CHANGELIST.md | 1 + MPF.Library/InfoTool.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 76e69b70..5da56496 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -2,6 +2,7 @@ - Update to DIC 20211001 - Fix Redump disc title pulling - Add /mr default flag options +- Make FillFromRedump private again ### 2.3 (2022-02-05) - Start overhauling Redump information pulling, again diff --git a/MPF.Library/InfoTool.cs b/MPF.Library/InfoTool.cs index 5f753be9..4bd8abb0 100644 --- a/MPF.Library/InfoTool.cs +++ b/MPF.Library/InfoTool.cs @@ -1602,7 +1602,7 @@ namespace MPF.Library /// Options object representing user-defined options /// Existing SubmissionInfo object to fill /// Optional result progress callback - public static void FillFromRedump(Options options, SubmissionInfo info, IProgress resultProgress = null) + private static void FillFromRedump(Options options, SubmissionInfo info, IProgress resultProgress = null) { // Set the current dumper based on username info.DumpersAndStatus.Dumpers = new string[] { options.RedumpUsername };