Committed the correct pc.c and fixed the number of SCSI ID's in scsi.h.

This commit is contained in:
OBattler
2018-02-10 01:50:23 +01:00
parent 0de0b20ac6
commit 86f50bdc48
2 changed files with 3 additions and 5 deletions

View File

@@ -8,7 +8,7 @@
*
* Main emulator module where most things are controlled.
*
* Version: @(#)pc.c 1.0.57 2018/02/06
* Version: @(#)pc.c 1.0.58 2018/02/10
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -1034,8 +1034,6 @@ pc_thread(void *param)
execx86(clockrate/100);
}
keyboard_process();
mouse_process();
joystick_process();

View File

@@ -8,7 +8,7 @@
*
* SCSI controller handler header.
*
* Version: @(#)scsi_h 1.0.12 2018/01/24
* Version: @(#)scsi_h 1.0.13 2018/02/07
*
* Authors: TheCollector1995, <mariogplayer@gmail.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -30,7 +30,7 @@
/* Configuration. */
#define SCSI_ID_MAX 8 /* 16 on wide buses */
#define SCSI_ID_MAX 16 /* 16 on wide buses */
#define SCSI_LUN_MAX 8 /* always 8 */