summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/scsihd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/scsihd.c')
-rw-r--r--src/emu/machine/scsihd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/scsihd.c b/src/emu/machine/scsihd.c
index 22661219479..5a7fa200926 100644
--- a/src/emu/machine/scsihd.c
+++ b/src/emu/machine/scsihd.c
@@ -169,15 +169,15 @@ void scsihd_device::ReadData( UINT8 *data, int dataLength )
switch ( command[0] )
{
- case 0x03: // REQUEST SENSE
- data[0] = 0x80; // valid sense
+ case 0x03: // REQUEST SENSE
+ data[0] = 0x80; // valid sense
for (i = 1; i < 12; i++)
{
data[i] = 0;
}
break;
- case 0x12: // INQUIRY
+ case 0x12: // INQUIRY
memset( data, 0, dataLength );
data[0] = 0x00; // device is direct-access (e.g. hard disk)
data[1] = 0x00; // media is not removable
@@ -189,7 +189,7 @@ void scsihd_device::ReadData( UINT8 *data, int dataLength )
strcpy((char *)&data[32], "1.0");
break;
- case 0x1a: // MODE SENSE (6 byte)
+ case 0x1a: // MODE SENSE (6 byte)
// special Apple ID page. this is a vendor-specific page,
// so unless collisions occur there should be no need
// to change it.