diff --git a/DICUI.Library/Utilities/Converters.cs b/DICUI.Library/Utilities/Converters.cs index 76f75272..e5869e81 100644 --- a/DICUI.Library/Utilities/Converters.cs +++ b/DICUI.Library/Utilities/Converters.cs @@ -481,6 +481,9 @@ namespace DICUI.Utilities case InternalProgram.CleanRip: return "CleanRip"; + case InternalProgram.DCDumper: + return "DCDumper"; + #endregion case InternalProgram.NONE: diff --git a/DICUI.Library/Utilities/DumpEnvironment.cs b/DICUI.Library/Utilities/DumpEnvironment.cs index f91d287b..23d72986 100644 --- a/DICUI.Library/Utilities/DumpEnvironment.cs +++ b/DICUI.Library/Utilities/DumpEnvironment.cs @@ -204,6 +204,10 @@ namespace DICUI.Utilities this.Parameters = new CleanRip.Parameters(parameters); break; + case InternalProgram.DCDumper: + this.Parameters = null; // TODO: Create correct parameter type when supported + break; + // This should never happen, but it needs a fallback default: this.Parameters = new DiscImageCreator.Parameters(parameters); @@ -237,6 +241,10 @@ namespace DICUI.Utilities this.Parameters.ExecutablePath = null; break; + case InternalProgram.DCDumper: + this.Parameters.ExecutablePath = null; + break; + // This should never happen, but it needs a fallback default: this.InternalProgram = InternalProgram.DiscImageCreator;