summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/epos.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/epos.h')
-rw-r--r--src/mame/includes/epos.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/epos.h b/src/mame/includes/epos.h
index f2a5e1ee623..9d112cb4459 100644
--- a/src/mame/includes/epos.h
+++ b/src/mame/includes/epos.h
@@ -15,7 +15,7 @@ public:
m_inputs(*this, { "INPUTS", "INPUTS2" }),
m_maincpu(*this, "maincpu"),
m_palette(*this, "palette"),
- m_led(*this, "led%u", 0U)
+ m_leds(*this, "led%u", 0U)
{ }
DECLARE_WRITE8_MEMBER(dealer_decrypt_rom);
@@ -40,7 +40,7 @@ public:
void epos_map(address_map &map);
protected:
- virtual void machine_start() override { m_led.resolve(); }
+ virtual void machine_start() override { m_leds.resolve(); }
/* memory pointers */
required_shared_ptr<uint8_t> m_videoram;
@@ -55,5 +55,5 @@ protected:
bool m_ay_porta_multiplex;
required_device<cpu_device> m_maincpu;
required_device<palette_device> m_palette;
- output_finder<2> m_led;
+ output_finder<2> m_leds;
};