Correct copy/paste error (nw)

This commit is contained in:
arbee 2019-12-04 22:24:35 -05:00
parent 5051bcdab2
commit 5ad429f4a5

View File

@ -745,7 +745,7 @@ READ8_MEMBER(apple2_state::inh_r)
WRITE8_MEMBER(apple2_state::inh_w)
{
if ((m_cnxx_slot != -1) && (m_slotdevice[m_cnxx_slot] != nullptr))
if ((m_inh_slot != -1) && (m_slotdevice[m_inh_slot] != nullptr))
{
m_slotdevice[m_inh_slot]->write_inh_rom(offset + 0xd000, data);
}