From 23946962ad4679c4d16034242d5da0c4b4b5601e Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 27 Apr 2023 17:56:19 -0400 Subject: [PATCH] bug - bookmarks didn't restore built-in floppy disk settings (such as disabling the 5.25" drives on a iigs) --- Ample/Slot.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ample/Slot.m b/Ample/Slot.m index a4286ad..1cbf71e 100644 --- a/Ample/Slot.m +++ b/Ample/Slot.m @@ -276,7 +276,8 @@ static NSDictionary *IndexMap = nil; } // set up child name so bookmarks work. - if (c == ':') _name = p; + //if (c == ':') _name = p; + if (c != '-') _name = p; }