summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/unico.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/unico.h')
-rw-r--r--src/mame/includes/unico.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/unico.h b/src/mame/includes/unico.h
index 8bf66dfbe35..c7234827303 100644
--- a/src/mame/includes/unico.h
+++ b/src/mame/includes/unico.h
@@ -15,7 +15,7 @@ public:
unico_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_palette(*this, "palette"),
- m_led(*this, "led%u", 0U),
+ m_leds(*this, "led%u", 0U),
m_maincpu(*this, "maincpu"),
m_oki(*this, "oki"),
m_gfxdecode(*this, "gfxdecode"),
@@ -43,7 +43,7 @@ protected:
void burglarx_map(address_map &map);
required_device<palette_device> m_palette;
- output_finder<2> m_led;
+ output_finder<2> m_leds;
private:
std::unique_ptr<uint16_t[]> m_vram;