Removed fdi_init() and fixed joystick_process().

This commit is contained in:
OBattler
2017-12-15 04:59:55 +01:00
parent 1fc459b8b9
commit cf67c2a1a9
4 changed files with 4 additions and 10 deletions

View File

@@ -417,7 +417,6 @@ void floppy_stop(int drive)
void floppy_general_init(void)
{
floppy_init();
fdi_init();
img_init();
d86f_init();
td0_init();

View File

@@ -9,7 +9,7 @@
* Implementation of the FDI floppy stream image format
* interface to the FDI2RAW module.
*
* Version: @(#)floppy_fdi.c 1.0.5 2017/11/04
* Version: @(#)floppy_fdi.c 1.0.6 2017/12/15
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -334,8 +334,3 @@ void fdi_seek(int drive, int track)
fdi_read_revolution(drive);
}
void fdi_init()
{
return;
}

View File

@@ -9,7 +9,7 @@
* Implementation of the FDI floppy stream image format
* interface to the FDI2RAW module.
*
* Version: @(#)floppy_fdi.h 1.0.2 2017/09/03
* Version: @(#)floppy_fdi.h 1.0.3 2017/12/15
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>