comment out unused code

This commit is contained in:
Jorj Bauer 2020-07-04 07:39:59 -04:00
parent e1f2525c79
commit 6e784863a8
1 changed files with 2 additions and 2 deletions

View File

@ -283,12 +283,12 @@ nibErr denibblizeTrack(const uint8_t input[NIBTRACKSIZE], uint8_t rawTrackBuffer
// loop through the data twice, so we make sure we read anything
// that crosses the end/start boundary
uint16_t startOfSector;
// uint16_t startOfSector;
for (uint16_t i=0; i<2*416*16; i++) {
// Find the prolog
if (input[i % NIBTRACKSIZE] != 0xD5)
continue;
startOfSector = i;
// startOfSector = i;
i++;
if (input[i % NIBTRACKSIZE] != 0xAA)
continue;