[SG1000] MSVC fix (nw)

This commit is contained in:
Nathan Woods 2012-12-10 12:29:01 +00:00
parent 83c7f8c03c
commit df9fcffa09

View File

@ -895,7 +895,7 @@ READ8_MEMBER( sf7000_state::ppi_pa_r )
UINT8 data = 0;
data |= m_fdc->get_irq();
data |= m_fdc->get_irq() ? 0x01 : 0x00;
data |= m_centronics->busy_r() << 1;
data |= m_floppy0->idx_r() << 2;