summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ajax.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ajax.h')
-rw-r--r--src/mame/includes/ajax.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/ajax.h b/src/mame/includes/ajax.h
index 4a154060a04..b4af0d7a4cd 100644
--- a/src/mame/includes/ajax.h
+++ b/src/mame/includes/ajax.h
@@ -25,7 +25,7 @@ public:
m_k051316(*this, "k051316"),
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch"),
- m_lamp(*this, "lamp%u", 0U)
+ m_lamps(*this, "lamp%u", 0U)
{ }
DECLARE_WRITE8_MEMBER(sound_bank_w);
@@ -68,5 +68,5 @@ protected:
required_device<k051316_device> m_k051316;
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- output_finder<8> m_lamp;
+ output_finder<8> m_lamps;
};