Fixed MSVC warning. (nw)

This commit is contained in:
Curt Coder 2012-12-15 22:17:40 +00:00
parent be09e4cd3c
commit 00d6fdc122

View File

@ -235,7 +235,7 @@ UINT8 comx_fd_device::comx_io_r(address_space &space, offs_t offset)
{
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);
}
else