Removing that .h file, I can't make a correct one.

This commit is contained in:
OBattler
2017-05-08 19:43:57 +02:00
parent 80b85db6a4
commit 9cabdf4a36
2 changed files with 5 additions and 10 deletions

View File

@@ -1909,7 +1909,11 @@ void d86f_format_track(int drive, int side, int do_write)
break;
case FMT_SECTOR_DATA:
max_len = dtl;
if (do_write) d86f_write_direct(drive, side, d86f[drive].fill, 0);
if (do_write)
{
d86f_write_direct(drive, side, d86f[drive].fill, 0);
d86f_handler[drive].write_data(drive, side, d86f[drive].datac++, d86f[drive].pos);
}
d86f_calccrc(drive, d86f[drive].fill);
break;
case FMT_SECTOR_GAP3:

View File

@@ -1,9 +0,0 @@
#ifndef SCSI_AHA154X_H
# define SCSI_AHA154X_H
extern device_t aha1540b_device;
extern device_t aha1542cf_device;
#endif /*SCSI_AHA154X_H*/