mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
nec/pc9801.cpp: Fix precedence error
This commit is contained in:
parent
2a606c86e0
commit
a499640a26
1 changed files with 1 additions and 1 deletions
|
@ -1668,7 +1668,7 @@ template <unsigned N> void pc98_base_state::update_uart_irq(int state)
|
|||
if (state)
|
||||
m_uart_irq_pending |= 1 << N;
|
||||
else
|
||||
m_uart_irq_pending &= ~1 << N;
|
||||
m_uart_irq_pending &= ~(1 << N);
|
||||
uart_irq_check();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue