mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
apple2gs.cpp: revert testing change that slipped into the previous commmit. [R. Belmont]
This commit is contained in:
parent
e306757737
commit
c1ed4048fb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user