[Stats] Misc. cleanup and Stats overhaul

This commit is contained in:
Matt Nadareski
2016-09-26 14:38:05 -07:00
parent fa5e87a9e1
commit e0c3623cbb
7 changed files with 190 additions and 200 deletions

View File

@@ -262,7 +262,9 @@ namespace SabreTools.Helper
_logger.ClearBeneath(Constants.HeaderHeight);
Console.SetCursorPosition(0, Constants.HeaderHeight + 1);
_logger.User("Stats of the matched ROMs:");
_matched.OutputStats(_logger, _logger, true);
StreamWriter sw = new StreamWriter(new MemoryStream());
_matched.OutputStats(sw, StatOutputFormat.None, _logger, true);
sw.Dispose();
// Now output the fixdat based on the original input if asked
if (_updateDat)