mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Start wiring through DCDumper a bit
This commit is contained in:
@@ -481,6 +481,9 @@ namespace DICUI.Utilities
|
||||
case InternalProgram.CleanRip:
|
||||
return "CleanRip";
|
||||
|
||||
case InternalProgram.DCDumper:
|
||||
return "DCDumper";
|
||||
|
||||
#endregion
|
||||
|
||||
case InternalProgram.NONE:
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user