Improve MFM/RLL/ESDI CD-ROM error message

This commit is contained in:
RichardG867
2020-06-18 21:23:34 -03:00
parent a5e14f2ae7
commit a3d6e4aa4e
3 changed files with 3 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ hdd_string_to_bus(char *str, int cdrom)
if (! strcmp(str, "mfm")) {
if (cdrom) {
no_cdrom:
ui_msgbox(MBX_ERROR, (wchar_t *)IDS_4099);
ui_msgbox_header(MBX_ERROR, (wchar_t *) IDS_2130, (wchar_t *) IDS_4099);
return(0);
}
@@ -93,9 +93,6 @@ no_cdrom:
if (! strcmp(str, "scsi"))
return(HDD_BUS_SCSI);
if (! strcmp(str, "usb"))
ui_msgbox(MBX_ERROR, (wchar_t *)IDS_4110);
return(0);
}