summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tamag1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tamag1.cpp')
-rw-r--r--src/mame/drivers/tamag1.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tamag1.cpp b/src/mame/drivers/tamag1.cpp
index 7b0a73509a5..1275d33f0c7 100644
--- a/src/mame/drivers/tamag1.cpp
+++ b/src/mame/drivers/tamag1.cpp
@@ -63,14 +63,14 @@ static E0C6S46_PIXEL_UPDATE_CB(tama_pixel_update)
// they are on pin SEG8(x=35) + COM0-3, pin SEG28(x=36) + COM12-15
if (x == 35 && y < 4)
- output_set_lamp_value(y, state);
+ device.machine().output().set_lamp_value(y, state);
else if (x == 36 && y >= 12)
- output_set_lamp_value(y-8, state);
+ device.machine().output().set_lamp_value(y-8, state);
// output for svg2lay
char buf[0x10];
sprintf(buf, "%d.%d", y, x);
- output_set_value(buf, state);
+ device.machine().output().set_value(buf, state);
}
PALETTE_INIT_MEMBER(tamag1_state, tama)