summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-11-11 15:27:52 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-11-11 15:27:52 -0500
commitfa2af9b49740e69e5cd6db7dd9cf86064ddf6feb (patch)
treee87d5fc7ca615c14d333ba77bbdb267f3ecbe307
parent998e46795ccc8133b879886894cf21c2d489835e (diff)
indigo.cpp: Fix build (nw)
-rw-r--r--src/mame/drivers/indigo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/indigo.cpp b/src/mame/drivers/indigo.cpp
index e99123fa550..8ab7de2aa0f 100644
--- a/src/mame/drivers/indigo.cpp
+++ b/src/mame/drivers/indigo.cpp
@@ -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);
}
}