Change the sector map so that it's readable.

This commit is contained in:
David Given
2019-01-21 23:42:53 +01:00
parent cce65d7bd0
commit 26d38826a7

View File

@@ -66,11 +66,11 @@ void writeSectorsToFile(const SectorSet& sectors, const Geometry& geometry,
auto sector = sectors[{track, head, sectorId}];
if (!sector)
{
std::cout << '.';
std::cout << 'X';
missingSectors++;
}
else if (sector->status == Sector::OK)
std::cout << 'G';
std::cout << '.';
else
{
badSectors++;