diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index 902222ed..d9e99e97 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -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)); diff --git a/Utilities.cs b/Utilities.cs index e158ba91..1e987017 100644 --- a/Utilities.cs +++ b/Utilities.cs @@ -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 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