[Structs] Rename TSV field to XSV

This commit is contained in:
Matt Nadareski
2016-08-29 13:54:53 -07:00
parent be89b8649e
commit 3f463a1cf5
4 changed files with 10 additions and 10 deletions

View File

@@ -164,7 +164,7 @@ namespace SabreTools.Helper
public string AddExt;
public bool GameName;
public bool Romba;
public bool? TSV; // true for tab-deliminated output, false for comma-deliminated output
public bool? XSV; // true for tab-deliminated output, false for comma-deliminated output
// Statistical data related to the DAT
public long RomCount;
@@ -207,7 +207,7 @@ namespace SabreTools.Helper
AddExt = this.AddExt,
GameName = this.GameName,
Romba = this.Romba,
TSV = this.TSV,
XSV = this.XSV,
RomCount = this.RomCount,
DiskCount = this.DiskCount,
TotalSize = this.TotalSize,
@@ -250,7 +250,7 @@ namespace SabreTools.Helper
AddExt = this.AddExt,
GameName = this.GameName,
Romba = this.Romba,
TSV = this.TSV,
XSV = this.XSV,
};
}
}