Removed the SCSI_CHINON stuff that was not supposed to be committed in the first place.

This commit is contained in:
OBattler
2019-09-26 10:02:43 +02:00
parent 3a6eaab250
commit e9d785283b
6 changed files with 21 additions and 51 deletions

View File

@@ -8,11 +8,11 @@
*
* Generic CD-ROM drive core.
*
* Version: @(#)cdrom.c 1.0.7 2018/10/30
* Version: @(#)cdrom.c 1.0.8 2019/09/26
*
* Author: Miran Grca, <mgrca8@gmail.com>
*
* Copyright 2018 Miran Grca.
* Copyright 2018,2019 Miran Grca.
*/
#include <inttypes.h>
#include <stdarg.h>
@@ -1006,7 +1006,6 @@ cdrom_hard_reset(void)
switch(dev->bus_type) {
case CDROM_BUS_ATAPI:
case CDROM_BUS_SCSI:
case CDROM_BUS_SCSI_CHINON:
scsi_cdrom_drive_reset(i);
break;

View File

@@ -8,11 +8,11 @@
*
* Generic CD-ROM drive core header.
*
* Version: @(#)cdrom.h 1.0.17 2018/10/28
* Version: @(#)cdrom.h 1.0.18 2019/09/26
*
* Author: Miran Grca, <mgrca8@gmail.com>
*
* Copyright 2016,2017 Miran Grca.
* Copyright 2016-2019 Miran Grca.
*/
#ifndef EMU_CDROM_H
#define EMU_CDROM_H
@@ -58,7 +58,6 @@ enum {
CDROM_BUS_DISABLED = 0,
CDROM_BUS_ATAPI = 4,
CDROM_BUS_SCSI,
CDROM_BUS_SCSI_CHINON,
CDROM_BUS_USB
};