Removed unneeded debug code.

This commit is contained in:
2018-01-01 15:04:52 +00:00
parent 80f4c7caba
commit d9d45884e6
6 changed files with 0 additions and 40 deletions

View File

@@ -247,12 +247,6 @@ namespace DiscImageChef.DiscImages
decodedImage.Write(filling, 0, filling.Length);
}
/*
FileStream debugStream = new FileStream("debug.img", FileMode.CreateNew, FileAccess.ReadWrite);
debugStream.Write(decodedImage.ToArray(), 0, (int)decodedImage.Length);
debugStream.Close();
*/
int sum = 0;
for(int i = 0; i < hdr.Length - 1; i++) sum += hdr[i];