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>

View File

@@ -8,7 +8,7 @@
*
* Joystick interface to host device.
*
* Version: @(#)win_joystick.cpp 1.0.6 2017/11/25
* Version: @(#)win_joystick.cpp 1.0.7 2017/12/15
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -216,7 +216,7 @@ void joystick_process(void)
{
int c, d;
if (joystick_type != 7) return;
if (joystick_type == 7) return;
for (c = 0; c < joysticks_present; c++)
{