Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
TBirdSoars committed Oct 6, 2020
1 parent 5ad9e4b commit 744b870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WiiuVcExtractor/RomExtractors/FdsVcExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ public string ExtractRom()
{
using (BinaryReader brDskChk = new BinaryReader(fsDskChk, new ASCIIEncoding()))
{
// Bool to account for proper header
// Bool to account for correct header
bool headerValid = true;

// First side is known to exist, so seek ahead to next disk
// First side is known to exist, so seek ahead to next side
brDskChk.BaseStream.Seek(vcNamePosition, SeekOrigin.Begin);
brDskChk.ReadBytes(VC_NAME_LENGTH);
brDskChk.ReadBytes(VC_NAME_PADDING);
Expand Down

0 comments on commit 744b870

Please sign in to comment.