apple1: fixed bug introduced when the cassette was slotified. [Colin Douglas Howell, R. Belmont]

This commit is contained in:
arbee 2017-04-14 00:06:56 -04:00
parent bae2414f8b
commit 723debdba7

View File

@ -183,9 +183,9 @@ READ8_MEMBER(a1bus_cassette_device::cassette_r)
because it can cause tape header bits on real cassette
images to be misread as data bits.) */
if (m_cassette->input() > 0.0)
return m_rom[0xc100 + (offset & ~1)];
return m_rom[(offset & ~1)];
else
return m_rom[0xc100 + offset];
return m_rom[offset];
}
}