mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Remove all debug console writes
This commit is contained in:
@@ -144,7 +144,6 @@ namespace DICUI
|
||||
Process process = new Process();
|
||||
process.StartInfo.FileName = dicPath;
|
||||
process.StartInfo.Arguments = discType + " " + driveLetter + " \"" + outputDirectory + "\\" + outputFileName + "\" " + driveSpeed + " " + processArguments;
|
||||
Console.WriteLine(process.StartInfo.Arguments);
|
||||
process.Start();
|
||||
process.WaitForExit();
|
||||
});
|
||||
@@ -205,10 +204,10 @@ namespace DICUI
|
||||
case DiscType.NONE:
|
||||
lbl_Status.Content = "Please select a valid disc type";
|
||||
break;
|
||||
case DiscType.GDROM:
|
||||
case DiscType.GameCubeGameDisc:
|
||||
case DiscType.GDROM:
|
||||
lbl_Status.Content = string.Format("{0} discs are partially supported by DIC", Utilities.DiscTypeToString(tuple.Item3));
|
||||
break;
|
||||
case DiscType.GameCubeGameDisc:
|
||||
case DiscType.HDDVD:
|
||||
case DiscType.UMD:
|
||||
lbl_Status.Content = string.Format("{0} discs are not currently supported by DIC", Utilities.DiscTypeToString(tuple.Item3));
|
||||
|
||||
@@ -422,7 +422,6 @@ namespace DICUI
|
||||
case DiscType.GDROM:
|
||||
return "gd"; // TODO: "swap"?
|
||||
case DiscType.HDDVD:
|
||||
Console.WriteLine("HD-DVD dumping is not supported by DIC");
|
||||
return null;
|
||||
case DiscType.BD25:
|
||||
return "bd";
|
||||
@@ -433,7 +432,6 @@ namespace DICUI
|
||||
case DiscType.GameCubeGameDisc:
|
||||
return "dvd";
|
||||
case DiscType.UMD:
|
||||
Console.WriteLine("UMD dumping is not supported by DIC");
|
||||
return null;
|
||||
|
||||
// Non-optical
|
||||
@@ -457,7 +455,6 @@ namespace DICUI
|
||||
List<DiscType?> validTypes = GetValidDiscTypes(sys);
|
||||
if (!validTypes.Contains(type))
|
||||
{
|
||||
Console.WriteLine("Invalid DiscType '{0}' for System '{1}'", type.ToString(), KnownSystemToString(sys));
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -494,7 +491,6 @@ namespace DICUI
|
||||
parameters.Add("/c2 20");
|
||||
break;
|
||||
case DiscType.HDDVD:
|
||||
Console.WriteLine("HD-DVD dumping is not supported by DIC");
|
||||
break;
|
||||
case DiscType.BD25:
|
||||
// Currently no defaults set
|
||||
@@ -508,7 +504,6 @@ namespace DICUI
|
||||
parameters.Add("/raw");
|
||||
break;
|
||||
case DiscType.UMD:
|
||||
Console.WriteLine("UMD dumping is not supported by DIC");
|
||||
break;
|
||||
|
||||
// Non-optical
|
||||
|
||||
Reference in New Issue
Block a user