summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/multfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/multfish.h')
-rw-r--r--src/mame/includes/multfish.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/multfish.h b/src/mame/includes/multfish.h
index 6f28bc5b0fd..47a071d5a23 100644
--- a/src/mame/includes/multfish.h
+++ b/src/mame/includes/multfish.h
@@ -24,7 +24,7 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_hopper(*this, "hopper"),
- m_lamp(*this, "lamp%u", 0U)
+ m_lamps(*this, "lamp%u", 0U)
{ }
DECLARE_WRITE8_MEMBER(igrosoft_gamble_vid_w);
@@ -99,7 +99,7 @@ protected:
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
required_device<ticket_dispenser_device> m_hopper;
- output_finder<13> m_lamp;
+ output_finder<13> m_lamps;
};