mcd: vis links loads all the way now (nw)

This commit is contained in:
cracyc 2016-10-21 15:21:50 -05:00
parent 8b0d856e15
commit a44ecc354f

View File

@ -89,8 +89,8 @@ bool mcd_isa_device::read_sector(bool first)
if(m_mode & 0x40)
{
//correct the header
m_buf[12] = m_readmsf >> 16;
m_buf[13] = m_readmsf >> 8;
m_buf[12] = dec_2_bcd(m_readmsf >> 16);
m_buf[13] = dec_2_bcd(m_readmsf >> 8);
}
m_readmsf = lba_to_msf_alt(lba + 1);
m_buf_count = m_dmalen + 1;