diff options
author | 2013-09-17 18:23:52 +0000 | |
---|---|---|
committer | 2013-09-17 18:23:52 +0000 | |
commit | 0839767cb356a6fe3d2512b8aaa317b0b17fc578 (patch) | |
tree | 3a62c7f1823b84fe21f4a15576ae460b31b6bce7 /src/mess/machine/sa1403d.h | |
parent | 46781347cd06f6b837944c92da630f4d45232c34 (diff) |
Use virtual multiple inheritance to share command processing between SCSI & ATAPI instead of having a SCSI subdevice. This allows matsushita_cr589_device & gdrom_device to derive from atapi_cdrom_device. [smf]
Diffstat (limited to 'src/mess/machine/sa1403d.h')
-rw-r--r-- | src/mess/machine/sa1403d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/sa1403d.h b/src/mess/machine/sa1403d.h index 2f189e7b026..043261d6f88 100644 --- a/src/mess/machine/sa1403d.h +++ b/src/mess/machine/sa1403d.h @@ -27,7 +27,7 @@ public: virtual machine_config_constructor device_mconfig_additions() const; virtual ioport_constructor device_input_ports() const; - virtual void ExecCommand( int *transferLength ); + virtual void ExecCommand(); virtual void WriteData( UINT8 *data, int dataLength ); }; |