From c1ed4048fbcea13cfe21b9e9bce9f59bcce7ac69 Mon Sep 17 00:00:00 2001 From: arbee Date: Mon, 19 Dec 2022 22:28:10 -0500 Subject: [PATCH] apple2gs.cpp: revert testing change that slipped into the previous commmit. [R. Belmont] --- src/mame/apple/apple2gs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/apple/apple2gs.cpp b/src/mame/apple/apple2gs.cpp index 92d08a14540..a6e4e22c9aa 100644 --- a/src/mame/apple/apple2gs.cpp +++ b/src/mame/apple/apple2gs.cpp @@ -2507,7 +2507,7 @@ u8 apple2gs_state::c000_r(offs_t offset) return m_gameio->sw2_r() | uFloatingBus7; #else case 0x61: // button 0 or Open Apple - return ((m_gameio->sw0_r() ) ? 0x80 : 0) | uFloatingBus7; + return ((m_gameio->sw0_r() || (m_kbspecial->read() & 0x10)) ? 0x80 : 0) | uFloatingBus7; case 0x62: // button 1 or Option return ((m_gameio->sw1_r() || (m_kbspecial->read() & 0x20)) ? 0x80 : 0) | uFloatingBus7;