From 4e416df3c86c23c7740cd2218464b9764939ef10 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 13 Dec 2022 20:04:20 -0800 Subject: [PATCH] Fix incorrect SetParameters --- CHANGELIST.md | 1 + MPF.Library/DumpEnvironment.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 800ad286..a7d5eef8 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -21,6 +21,7 @@ - Reenable write offset for all CDs - Add missing redumper output file - Force a filename for redumper +- Fix incorrect SetParameters ### 2.4 (2022-10-26) - Update to DIC 20211001 diff --git a/MPF.Library/DumpEnvironment.cs b/MPF.Library/DumpEnvironment.cs index 539b4848..a2b26915 100644 --- a/MPF.Library/DumpEnvironment.cs +++ b/MPF.Library/DumpEnvironment.cs @@ -164,7 +164,7 @@ namespace MPF.Library break; case InternalProgram.Redumper: - this.Parameters = new Modules.DD.Parameters(parameters) { ExecutablePath = Options.RedumperPath }; + this.Parameters = new Modules.Redumper.Parameters(parameters) { ExecutablePath = Options.RedumperPath }; break; // Verification support only