From 86f50bdc48abd2251a7a53f48224c92427542b63 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 10 Feb 2018 01:50:23 +0100 Subject: [PATCH] Committed the correct pc.c and fixed the number of SCSI ID's in scsi.h. --- src/pc.c | 4 +--- src/scsi/scsi.h | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/pc.c b/src/pc.c index a842ed0cf..ba9b45bfb 100644 --- a/src/pc.c +++ b/src/pc.c @@ -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, * Miran Grca, @@ -1034,8 +1034,6 @@ pc_thread(void *param) execx86(clockrate/100); } - keyboard_process(); - mouse_process(); joystick_process(); diff --git a/src/scsi/scsi.h b/src/scsi/scsi.h index 1d6b3489b..898596f68 100644 --- a/src/scsi/scsi.h +++ b/src/scsi/scsi.h @@ -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, * Miran Grca, @@ -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 */