mirror of
https://github.com/holub/mame
synced 2025-07-04 09:28:51 +03:00
indigo.cpp: Fix build (nw)
This commit is contained in:
parent
998e46795c
commit
fa2af9b497
@ -725,12 +725,12 @@ void indigo_state::set_timer_int_clear(uint32_t data)
|
||||
{
|
||||
if (BIT(data, 0))
|
||||
{
|
||||
LOGMASKED(LOG_PIT | LOG_INT, "Clearing Timer 0 Interrupt: %d\n", state);
|
||||
LOGMASKED(LOG_PIT | LOG_INT, "Clearing Timer 0 Interrupt: %d\n", data);
|
||||
m_maincpu->set_input_line(MIPS3_IRQ2, CLEAR_LINE);
|
||||
}
|
||||
if (BIT(data, 1))
|
||||
{
|
||||
LOGMASKED(LOG_PIT | LOG_INT, "Clearing Timer 1 Interrupt: %d\n", state);
|
||||
LOGMASKED(LOG_PIT | LOG_INT, "Clearing Timer 1 Interrupt: %d\n", data);
|
||||
m_maincpu->set_input_line(MIPS3_IRQ3, CLEAR_LINE);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user