summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mainevt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mainevt.h')
-rw-r--r--src/mame/includes/mainevt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/mainevt.h b/src/mame/includes/mainevt.h
index ab3c7fec9e1..80ec2fbe175 100644
--- a/src/mame/includes/mainevt.h
+++ b/src/mame/includes/mainevt.h
@@ -24,7 +24,7 @@ public:
, m_k052109(*this, "k052109")
, m_k051960(*this, "k051960")
, m_rombank(*this, "rombank")
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
{ }
DECLARE_WRITE8_MEMBER(dv_nmienable_w);
@@ -73,5 +73,5 @@ protected:
required_device<k051960_device> m_k051960;
required_memory_bank m_rombank;
- output_finder<4> m_led;
+ output_finder<4> m_leds;
};