Bumped up maximum MFM tracks from 1023 to 2047, fixes #822.

This commit is contained in:
OBattler
2020-06-19 12:10:04 +02:00
parent bee3ceda8d
commit e4dbacdce3
2 changed files with 2 additions and 2 deletions

View File

@@ -863,7 +863,7 @@ load_hard_disks(void)
case HDD_BUS_MFM:
max_spt = 26; /* 26 for RLL */
max_hpc = 15;
max_tracks = 1023;
max_tracks = 2047;
break;
case HDD_BUS_XTA:

View File

@@ -3349,7 +3349,7 @@ hdd_add_file_open_error:
case HDD_BUS_MFM:
max_spt = 26; /* 17 for MFM, 26 for RLL. */
max_hpc = 15;
max_tracks = 1023;
max_tracks = 2047;
break;
case HDD_BUS_XTA:
max_spt = 63;