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

@@ -998,13 +998,13 @@ load_hard_disks(void)
break;
case HDD_BUS_IDE:
max_spt = 63;
max_spt = 255;
max_hpc = 255;
max_tracks = 266305;
break;
case HDD_BUS_SCSI:
max_spt = 99;
max_spt = 255;
max_hpc = 255;
max_tracks = 266305;
break;