diff --git a/WiiuVcExtractor/RomExtractors/FdsVcExtractor.cs b/WiiuVcExtractor/RomExtractors/FdsVcExtractor.cs index 6625c7e..4d71c41 100644 --- a/WiiuVcExtractor/RomExtractors/FdsVcExtractor.cs +++ b/WiiuVcExtractor/RomExtractors/FdsVcExtractor.cs @@ -122,13 +122,13 @@ public string ExtractRom() // Read in 2nd disk header byte[] headerBuffer = brDskChk.ReadBytes(FDS_HEADER_LENGTH); - // Iterate through buffer + // Iterate through buffer and header for (int i = 0; i < FDS_HEADER_CHECK.Length && headerValid; i++) { // Compare byte at buffer position to corresponding byte in header if (headerBuffer[i] != FDS_HEADER_CHECK[i]) { - // If they don't match, header is wrong + // If they don't match, header is wrong - end loops headerValid = false; } }