summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/calomega.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/calomega.h')
-rw-r--r--src/mame/includes/calomega.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/calomega.h b/src/mame/includes/calomega.h
index 93241317ecb..c6d286d3699 100644
--- a/src/mame/includes/calomega.h
+++ b/src/mame/includes/calomega.h
@@ -22,7 +22,7 @@ public:
m_in0_3(*this, "IN0-3"),
m_frq(*this, "FRQ"),
m_sw2(*this, "SW2"),
- m_lamp(*this, "lamp%u", 0U)
+ m_lamps(*this, "lamp%u", 1U)
{ }
DECLARE_WRITE8_MEMBER(calomega_videoram_w);
@@ -63,7 +63,7 @@ public:
void sys905_map(address_map &map);
void sys906_map(address_map &map);
protected:
- virtual void machine_start() override { m_lamp.resolve(); }
+ virtual void machine_start() override { m_lamps.resolve(); }
virtual void video_start() override;
private:
@@ -83,7 +83,7 @@ private:
optional_ioport m_in0_3;
optional_ioport m_frq;
optional_ioport m_sw2;
- output_finder<10> m_lamp;
+ output_finder<9> m_lamps;
uint8_t m_tx_line;
int m_s903_mux_data;