From cf651c6cc009ed50bd970118c09fedac1d5606a1 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Fri, 15 Apr 2022 21:24:17 +0300 Subject: [PATCH] Read track zero when checking bootblock contents. Disappeared in previous update. --- disk.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/disk.cpp b/disk.cpp index 1e053932..0cde9c30 100644 --- a/disk.cpp +++ b/disk.cpp @@ -5317,6 +5317,8 @@ int DISK_examine_image(struct uae_prefs *p, int num, struct diskinfo *di, bool d di->unreadable = true; oldcyl = drv->cyl; oldside = side; + drv->cyl = 0; + side = 0; if (!drive_insert (drv, p, num, p->floppyslots[num].df, true, true) || (!drv->diskfile && !drv->bridge)) { drv->cyl = oldcyl; side = oldside; -- 2.47.3