# HG changeset patch # User Michael Pavone # Date 1644299697 28800 # Node ID 460c93c19146a39c80235b1769b46e126c69632f # Parent c732dcc9c61b09b17b22a33a6ae0f13e9fd5c82b Fix CDD byte cycle counter deduction that got broken when I fixed the off-by-one on CD-DA diff -r c732dcc9c61b -r 460c93c19146 cdd_mcu.c --- a/cdd_mcu.c Mon Feb 07 21:31:58 2022 -0800 +++ b/cdd_mcu.c Mon Feb 07 21:54:57 2022 -0800 @@ -667,5 +667,5 @@ context->last_nibble_cycle = 0; } } - context->next_byte_cycle -= deduction; + context->next_byte_cycle -= cd_deduction; }