summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/segag80v.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/segag80v.h')
-rw-r--r--src/mame/includes/segag80v.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/segag80v.h b/src/mame/includes/segag80v.h
index 7f5fc5d007f..0e058e7bae7 100644
--- a/src/mame/includes/segag80v.h
+++ b/src/mame/includes/segag80v.h
@@ -78,10 +78,10 @@ public:
DECLARE_WRITE_LINE_MEMBER(service_switch_w);
DECLARE_WRITE_LINE_MEMBER(irq_ack_w);
- template<int _Index>
+ template<int Index>
DECLARE_WRITE_LINE_MEMBER( coin_w )
{
- const u8 mask = 1 << _Index;
+ const u8 mask = 1 << Index;
if (state == 0 && (m_coin_last_state & mask) != 0)
m_coin_ff_state |= mask;