summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/djmain.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/djmain.h')
-rw-r--r--src/mame/includes/djmain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/djmain.h b/src/mame/includes/djmain.h
index bc81dec7218..201db9f5d4b 100644
--- a/src/mame/includes/djmain.h
+++ b/src/mame/includes/djmain.h
@@ -19,7 +19,7 @@ public:
, m_palette(*this, "palette")
, m_turntable(*this, {"TT1", "TT2"})
, m_sndram(*this, "sndram")
- , m_led(*this, "led%u", 0U)
+ , m_leds(*this, "led%u", 0U)
{
}
@@ -80,7 +80,7 @@ protected:
required_device<palette_device> m_palette;
optional_ioport_array<2> m_turntable;
required_shared_ptr<uint8_t> m_sndram;
- output_finder<3> m_led;
+ output_finder<3> m_leds;
int m_sndram_bank;
int m_turntable_select;