From fe64e38b499ecd6830965c13aea06cfa66bc3f45 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 1 Nov 2024 11:53:35 -0400 Subject: fairlight/cmi.cpp: Fix logerror --- src/mame/fairlight/cmi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/fairlight/cmi.cpp b/src/mame/fairlight/cmi.cpp index 880b07f7dc0..f64f740fc1f 100644 --- a/src/mame/fairlight/cmi.cpp +++ b/src/mame/fairlight/cmi.cpp @@ -1710,7 +1710,7 @@ u8 cmi_state::vfetch2_r(offs_t offset) // IRQ vector int level = m_i8214[1]->a_r() ^ 7; u8 irq_address = m_cpu2space->read_byte(0xffe0 + level*2 + BIT(offset, 0)); - LOG("%s: CPU2 IRQ vector %s byte: %02x (%s)\n", machine().describe_context(), BIT(offset, 0) ? "low" : "high", irq_address); + LOG("%s: CPU2 IRQ vector %s byte: %02x\n", machine().describe_context(), BIT(offset, 0) ? "low" : "high", irq_address); return irq_address; } else if ((offset & 0x000e) == 0x000e) -- cgit v1.2.3