From e9c9adf9889b535b3dbbb80adf0b6e6212c706d8 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 9 Oct 2016 00:24:25 +0200 Subject: [PATCH] Made sure Sector not found will be issued in case of data rate or RPM mismatch. --- src/disc_86f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/disc_86f.c b/src/disc_86f.c index 5cab52584..e30f9009d 100644 --- a/src/disc_86f.c +++ b/src/disc_86f.c @@ -2260,7 +2260,7 @@ void d86f_poll_find_nf(int drive, int side) break; case BYTE_IDAM: - d86f[drive].id_am_counter++; + if (d86f_can_read_address(drive)) d86f[drive].id_am_counter++; d86f_calccrc(drive, d86f[drive].track_data_byte); break;