Fix off-by-one error in the MX decoder.

This commit is contained in:
David Given
2022-02-22 22:51:14 +01:00
parent bd392b91b7
commit 548e07ce17

View File

@@ -38,7 +38,7 @@ public:
nanoseconds_t advanceToNextRecord() override
{
if (_currentSector == 10)
if (_currentSector == 11)
{
/* That was the last sector on the disk. */
return 0;