diff options
-rw-r--r-- | loader/devices.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/loader/devices.c b/loader/devices.c index ff2e13e52..9b9fb858a 100644 --- a/loader/devices.c +++ b/loader/devices.c @@ -169,6 +169,13 @@ int devLoadDriverDisk(moduleInfoSet modInfo, moduleList modLoaded, int done = 0; do { + if (FL_EXPERT(flags)) { + rc = newtWinChoice(_("Devices"), _("Yes"), + _("No"), + _("Do you have a driver disk?")); + if (rc == 2) return LOADER_BACK; + } + rc = newtWinChoice(_("Devices"), _("OK"), cancelNotBack ? _("Cancel") : _("Back"), _("Insert your driver disk and press \"OK\" to continue.")); |