mirror of
https://github.com/holub/mame
synced 2025-05-07 14:54:35 +03:00
apple1: fixed bug introduced when the cassette was slotified. [Colin Douglas Howell, R. Belmont]
This commit is contained in:
parent
bae2414f8b
commit
723debdba7
@ -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];
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user