Start wiring through DCDumper a bit

This commit is contained in:
Matt Nadareski
2020-09-10 11:11:26 -07:00
parent 29f14f5690
commit 0154ee5bb6
2 changed files with 11 additions and 0 deletions

View File

@@ -481,6 +481,9 @@ namespace DICUI.Utilities
case InternalProgram.CleanRip:
return "CleanRip";
case InternalProgram.DCDumper:
return "DCDumper";
#endregion
case InternalProgram.NONE:

View File

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