From b9ba6bb8bf1cb176f9320dc7a4f2c9c13129c6cb Mon Sep 17 00:00:00 2001 From: Peter Ferrie Date: Thu, 19 Sep 2019 20:54:31 -0700 Subject: [PATCH] apple2e: fix LC query state (nw) --- src/mame/drivers/apple2e.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp index d4efe41a5a2..b70bbfc61a4 100644 --- a/src/mame/drivers/apple2e.cpp +++ b/src/mame/drivers/apple2e.cpp @@ -1658,8 +1658,8 @@ READ8_MEMBER(apple2e_state::c000_r) return rv; } - case 0x11: // read LCRAM2 (LC Dxxx bank), also reads like $C010 without strobe reset - return (m_lcram2 ? 0x80 : 0x00) | m_strobe | m_transchar; + case 0x11: // read LCRAM2 (LC Dxxx bank) + return (m_lcram2 ? 0x80 : 0x00) | m_transchar; case 0x12: // read LCRAM (is LC readable?) return (m_lcram ? 0x80 : 0x00) | m_transchar;