From 6e784863a80aebc4d3c0e1f45ea84d35d509f406 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Sat, 4 Jul 2020 07:39:59 -0400 Subject: [PATCH] comment out unused code --- apple/nibutil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apple/nibutil.cpp b/apple/nibutil.cpp index e2f1f0d..0d5673b 100644 --- a/apple/nibutil.cpp +++ b/apple/nibutil.cpp @@ -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;