mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fishing frenzy has no hard drive at all and prefers this value. (nw)
This commit is contained in:
parent
2a6048249d
commit
e2fc23868d
@ -918,7 +918,7 @@ UINT16 ide_controller_device::read_dma()
|
||||
ide_device_interface *dev = slot[cur_drive]->dev();
|
||||
|
||||
if (dev == NULL)
|
||||
return 0;
|
||||
return 0xff;
|
||||
|
||||
UINT16 result = dev->buffer[dev->buffer_offset++];
|
||||
result |= dev->buffer[dev->buffer_offset++] << 8;
|
||||
@ -951,7 +951,7 @@ READ16_MEMBER( ide_controller_device::read_cs0 )
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
return 0xff;
|
||||
}
|
||||
|
||||
switch (offset)
|
||||
@ -1056,7 +1056,7 @@ READ16_MEMBER( ide_controller_device::read_cs1 )
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
return 0xff;
|
||||
}
|
||||
|
||||
/* logit */
|
||||
|
Loading…
Reference in New Issue
Block a user