From c9c3d32c77133b0f6ba4ed4949b89208dacf12fe Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 2 Dec 2023 19:53:08 +0200 Subject: [PATCH] Mark UAE boot ROM as needed when any HD panel "Add drives" option is selected. --- expansion.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/expansion.cpp b/expansion.cpp index 42e6961c..d7b5660b 100644 --- a/expansion.cpp +++ b/expansion.cpp @@ -2399,6 +2399,10 @@ static uaecptr check_boot_rom (struct uae_prefs *p, int *boot_rom_type) return b; if (nr_directory_units (p)) return b; +#ifdef WIN32 + if (p->win32_automount_drives || p->win32_automount_cddrives || p->win32_automount_netdrives || p->win32_automount_removable) + return b; +#endif if (p->socket_emu) return b; if (p->uaeserial) -- 2.47.3