mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Change the sector map so that it's readable.
This commit is contained in:
@@ -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++;
|
||||
|
||||
Reference in New Issue
Block a user