mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
macp.cpp: Fix clang error: operator '?:' has lower precedence than '|'; '|' will be evaluated first [-Werror,-Wbitwise-conditional-parentheses]
This commit is contained in:
parent
fbc3f7ce8b
commit
d501e6d7e7
@ -294,7 +294,7 @@ void macp_state::ay1_b_w(u8 data)
|
||||
|
||||
u8 macp_state::ay1_b_r()
|
||||
{
|
||||
return 0x7f | (m_relay_ctrl == 3) ? 0 : 1; // BIT 7 low indicates 40volt supply is available
|
||||
return 0x7f | (m_relay_ctrl == 3 ? 0 : 1); // BIT 7 low indicates 40volt supply is available
|
||||
}
|
||||
|
||||
WRITE_LINE_MEMBER( macp_state::irq_w )
|
||||
|
Loading…
Reference in New Issue
Block a user