Bumped up maximum sectors for IDE, ATAPI, and SCSI to 255 for VHD compliance.

This commit is contained in:
OBattler
2022-12-15 15:49:00 +01:00
parent 48f47c9f56
commit d50b072cf8
3 changed files with 6 additions and 6 deletions

View File

@@ -703,13 +703,13 @@ HarddiskDialog::on_comboBoxBus_currentIndexChanged(int index)
max_cylinders = 266305;
break;
case HDD_BUS_IDE:
max_sectors = 63;
max_sectors = 255;
max_heads = 255;
max_cylinders = 266305;
break;
case HDD_BUS_ATAPI:
case HDD_BUS_SCSI:
max_sectors = 99;
max_sectors = 255;
max_heads = 255;
max_cylinders = 266305;
break;