Increased HD heads limit to 255, larger SCSI hdds now work.

This commit is contained in:
TC1995
2017-05-22 13:52:45 +02:00
parent 4c61635f98
commit a4cd4b2866

View File

@@ -971,9 +971,9 @@ static void loadconfig_hard_disks(void)
{
hdc[c].spt = 99;
}
if (hdc[c].hpc > 64)
if (hdc[c].hpc > 255)
{
hdc[c].hpc = 64;
hdc[c].hpc = 255;
}
if (hdc[c].tracks > 266305)
{