mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Stats CSV/TSV should use byte values not pretty ones
This commit is contained in:
@@ -126,7 +126,7 @@ namespace SabreTools.Helper.Dats
|
||||
{
|
||||
case StatDatFormat.CSV:
|
||||
line = "\"" + FileName + "\","
|
||||
+ "\"" + Style.GetBytesReadable(TotalSize) + "\","
|
||||
+ "\"" + TotalSize + "\","
|
||||
+ "\"" + (game == -1 ? Count : game) + "\","
|
||||
+ "\"" + RomCount + "\","
|
||||
+ "\"" + DiskCount + "\","
|
||||
@@ -191,7 +191,7 @@ namespace SabreTools.Helper.Dats
|
||||
break;
|
||||
case StatDatFormat.TSV:
|
||||
line = "\"" + FileName + "\"\t"
|
||||
+ "\"" + Style.GetBytesReadable(TotalSize) + "\"\t"
|
||||
+ "\"" + TotalSize + "\"\t"
|
||||
+ "\"" + (game == -1 ? Count : game) + "\"\t"
|
||||
+ "\"" + RomCount + "\"\t"
|
||||
+ "\"" + DiskCount + "\"\t"
|
||||
|
||||
Reference in New Issue
Block a user