mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Add --dump-sectors. Sector positions are recorded correctly.
This commit is contained in:
@@ -25,7 +25,7 @@ void AbstractDecoder::decodeToSectors(Track& track)
|
||||
beginTrack();
|
||||
for (;;)
|
||||
{
|
||||
Fluxmap::Position recordStart = sector.position = fmr.tell();
|
||||
Fluxmap::Position recordStart = fmr.tell();
|
||||
sector.clock = 0;
|
||||
sector.status = Sector::MISSING;
|
||||
sector.data.clear();
|
||||
@@ -41,7 +41,7 @@ void AbstractDecoder::decodeToSectors(Track& track)
|
||||
|
||||
/* Read the sector record. */
|
||||
|
||||
recordStart = fmr.tell();
|
||||
sector.position = recordStart = fmr.tell();
|
||||
decodeSectorRecord();
|
||||
Fluxmap::Position recordEnd = fmr.tell();
|
||||
pushRecord(recordStart, recordEnd);
|
||||
|
||||
Reference in New Issue
Block a user