mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
Fixed MSVC warning. (nw)
This commit is contained in:
parent
be09e4cd3c
commit
00d6fdc122
@ -235,7 +235,7 @@ UINT8 comx_fd_device::comx_io_r(address_space &space, offs_t offset)
|
|||||||
{
|
{
|
||||||
if (m_q)
|
if (m_q)
|
||||||
{
|
{
|
||||||
data = 0xfe | m_fdc->intrq_r();
|
data = 0xfe | (m_fdc->intrq_r() ? 1 : 0);
|
||||||
logerror("%s FDC intrq read %02x\n", machine().describe_context(), data);
|
logerror("%s FDC intrq read %02x\n", machine().describe_context(), data);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user