Removed a useless if block from the XTA code.

This commit is contained in:
OBattler
2020-01-14 23:05:10 +01:00
parent a8a67364d8
commit a2f8162500

View File

@@ -385,9 +385,6 @@ do_seek(hdc_t *dev, drive_t *drive, int cyl)
drive->cur_cyl = (drive->tracks - 1);
else
drive->cur_cyl = dev->track;
if (drive->cur_cyl < 0)
drive->cur_cyl = 0;
}