Implemented the Pro Audio Spectrum Plus serial mixer, Pro Audio Spectrum 16 parallel mixer, Pro Audio Spectrum Plus/16 SCSI, ESS ES688, all three ESS PnP AudioDrives, made the wavetables use a separate 44.1 kHz source, and made the Sound Blaster 16 PNP use a proper PNP ROM dump.
This commit is contained in:
@@ -272,13 +272,13 @@ MachineStatus::hasCassette()
|
||||
bool
|
||||
MachineStatus::hasIDE()
|
||||
{
|
||||
return machine_has_flags(machine, MACHINE_IDE_QUAD) > 0;
|
||||
return (machine_has_flags(machine, MACHINE_IDE_QUAD) > 0) || other_ide_present;
|
||||
}
|
||||
|
||||
bool
|
||||
MachineStatus::hasSCSI()
|
||||
{
|
||||
return machine_has_flags(machine, MACHINE_SCSI) > 0;
|
||||
return (machine_has_flags(machine, MACHINE_SCSI) > 0) || other_scsi_present;
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user