From a2ac7222f91048be2e1613d71da8ec2cf0766279 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 10 Jun 2018 15:07:28 -0700 Subject: [PATCH] Remove extra ECC check from PS1 --- MainWindow.xaml.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index beebe4ee..8842e450 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -103,9 +103,6 @@ namespace DICUI // TODO: Direct invocation of program instead of via Batch File using (StreamWriter writetext = new StreamWriter("PSX" + guid + ".bat")) { - writetext.WriteLine("edccchk" + " " + "\"" + outputDirectory + "\\" + outputFileName + ".bin" + "\" > " + "\"" + outputDirectory + "\\" + "edccchk1.txt"); - writetext.WriteLine("edccchk" + " " + "\"" + outputDirectory + "\\" + outputFileName + " (Track 1).bin" + "\" > " + "\"" + outputDirectory + "\\" + "edccchk1.txt"); - writetext.WriteLine("edccchk" + " " + "\"" + outputDirectory + "\\" + outputFileName + " (Track 01).bin" + "\" > " + "\"" + outputDirectory + "\\" + "edccchk1.txt"); writetext.WriteLine("psxt001z" + " " + "\"" + outputDirectory + "\\" + outputFileName + ".bin" + "\" > " + "\"" + outputDirectory + "\\" + "psxt001z1.txt"); writetext.WriteLine("psxt001z" + " " + "\"" + outputDirectory + "\\" + outputFileName + " (Track 1).bin" + "\" > " + "\"" + outputDirectory + "\\" + "psxt001z2.txt"); writetext.WriteLine("psxt001z" + " " + "\"" + outputDirectory + "\\" + outputFileName + " (Track 01).bin" + "\" > " + "\"" + outputDirectory + "\\" + "psxt001z3.txt");