summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-10-26 20:31:07 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-10-26 20:31:07 -0400
commitf7153dca8b2a00aacce876b8b6009c6d5434ffef (patch)
tree3896774c1bc55079021bc55f75d409da77ee15c4
parent73ef4cf88a2267aa96df57434699a5341bd02c42 (diff)
Fix Clang build (nw)
-rw-r--r--src/mame/machine/interpro_ioga.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/machine/interpro_ioga.cpp b/src/mame/machine/interpro_ioga.cpp
index 9a58de26336..e790a3ab269 100644
--- a/src/mame/machine/interpro_ioga.cpp
+++ b/src/mame/machine/interpro_ioga.cpp
@@ -342,6 +342,8 @@ void interpro_ioga_device::set_int_line(interrupt_type type, int number, int sta
m_line_state = (state == ASSERT_LINE) ? (m_line_state | mask) : (m_line_state & ~mask);
}
else
+#else
+ (void)m_line_state;
#endif
set_pending(type, number, state == ASSERT_LINE);