summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wacky_gator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wacky_gator.cpp')
-rw-r--r--src/mame/drivers/wacky_gator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/wacky_gator.cpp b/src/mame/drivers/wacky_gator.cpp
index ddaedcdd4c4..f95c135a59d 100644
--- a/src/mame/drivers/wacky_gator.cpp
+++ b/src/mame/drivers/wacky_gator.cpp
@@ -42,7 +42,7 @@ public:
m_samples(*this, "oki"),
m_alligator(*this, "alligator%u", 0U),
m_digit(*this, "digit%u", 0U),
- m_lamp(*this, "lamp%u", 0U)
+ m_lamps(*this, "lamp%u", 0U)
{ }
DECLARE_CUSTOM_INPUT_MEMBER(alligators_rear_sensors_r);
@@ -85,7 +85,7 @@ private:
required_memory_region m_samples;
output_finder<5> m_alligator;
output_finder<8> m_digit;
- output_finder<32> m_lamp;
+ output_finder<32> m_lamps;
int m_adpcm_sel;
uint16_t m_adpcm_pos;
@@ -185,7 +185,7 @@ void wackygtr_state::machine_start()
{
m_alligator.resolve();
m_digit.resolve();
- m_lamp.resolve();
+ m_lamps.resolve();
save_item(NAME(m_adpcm_sel));
save_item(NAME(m_adpcm_pos));
@@ -211,7 +211,7 @@ void wackygtr_state::set_digits(int p, uint8_t value)
void wackygtr_state::set_lamps(int p, uint8_t value)
{
for (int i=0; i<8; i++)
- m_lamp[p + i] = BIT(value, i);
+ m_lamps[p + i] = BIT(value, i);
}
static INPUT_PORTS_START( wackygtr )