Fixed a mistake with the three new FDC commands.

This commit is contained in:
OBattler
2016-10-05 01:42:11 +02:00
parent d4f682d142
commit 8c439a1bec

View File

@@ -1282,9 +1282,12 @@ void fdc_callback()
switch (discint)
{
case 5:
case 9:
disc_writesector(fdc.drive, fdc.sector, fdc.rw_track, fdc.head, fdc.rate, fdc.params[4]);
break;
case 6:
case 0xC:
case 0x16:
disc_readsector(fdc.drive, fdc.sector, fdc.rw_track, fdc.head, fdc.rate, fdc.params[4]);
break;
}