Add PS/1 XTIDE variant to HDD controller list.

This commit is contained in:
SarahW 2017-10-12 18:31:43 +01:00
commit 56b9c33780
6 changed files with 38 additions and 15 deletions

View file

@ -188,6 +188,12 @@ static void recalc_hdd_list(void* hdlg, int model, int use_selected_hdd, int for
c++;
continue;
}
if ((((hdd_controller_get_flags(c) & DEVICE_PS1) && models[model].id != ROM_IBMPS1_2011) ||
(!(hdd_controller_get_flags(c) & DEVICE_PS1) && models[model].id == ROM_IBMPS1_2011)) && c)
{
c++;
continue;
}
if (!hdd_controller_available(c))
{
c++;