From 45cf28e0eb870713e41479991eb4fadff0923b17 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 28 Apr 2018 15:48:49 -0400 Subject: [PATCH] Corrects sync lengths. --- Storage/Disk/Encodings/AppleGCR.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Storage/Disk/Encodings/AppleGCR.cpp b/Storage/Disk/Encodings/AppleGCR.cpp index a7a137b9e..98ef10d29 100644 --- a/Storage/Disk/Encodings/AppleGCR.cpp +++ b/Storage/Disk/Encodings/AppleGCR.cpp @@ -74,11 +74,11 @@ using namespace Storage::Encodings; }*/ Storage::Disk::PCMSegment AppleGCR::six_and_two_sync(int length) { - return sync(length, 9); + return sync(length, 10); } Storage::Disk::PCMSegment AppleGCR::five_and_three_sync(int length) { - return sync(length, 10); + return sync(length, 9); } Storage::Disk::PCMSegment AppleGCR::header(uint8_t volume, uint8_t track, uint8_t sector) {