summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/petuja.h
diff options
context:
space:
mode:
author MooglyGuy <MooglyGuy@users.noreply.github.com>2023-05-31 17:43:46 +0200
committer GitHub <noreply@github.com>2023-06-01 01:43:46 +1000
commit9f661e567c4528e7f7f662209e4b677f12b99875 (patch)
tree5dbd6f4cc4c274c296511dbde1d802d68dea4743 /src/devices/bus/pet/petuja.h
parenta9935073709fffa95130ef1b7ea701c3a2325b9b (diff)
emu/device.h: Removed device (READ|WRITE)_LINE_MEMBER in favor of explicit function signatures. (#11283) [Ryan Holtz]
Diffstat (limited to 'src/devices/bus/pet/petuja.h')
-rw-r--r--src/devices/bus/pet/petuja.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/pet/petuja.h b/src/devices/bus/pet/petuja.h
index b268c0d1519..9d5c9693743 100644
--- a/src/devices/bus/pet/petuja.h
+++ b/src/devices/bus/pet/petuja.h
@@ -33,12 +33,12 @@ public:
virtual ioport_constructor device_input_ports() const override;
// device_pet_user_port_interface overrides
- WRITE_LINE_MEMBER( write_up1 ) { m_up1 = state; update_port1(); }
- WRITE_LINE_MEMBER( write_down1 ) { m_down1 = state; update_port1(); }
- WRITE_LINE_MEMBER( write_fire1 ) { m_fire1 = state; update_port1(); }
- WRITE_LINE_MEMBER( write_up2 ) { m_up2 = state; update_port2(); }
- WRITE_LINE_MEMBER( write_down2 ) { m_down2 = state; update_port2(); }
- WRITE_LINE_MEMBER( write_fire2 ) { m_fire2 = state; update_port2(); }
+ void write_up1(int state) { m_up1 = state; update_port1(); }
+ void write_down1(int state) { m_down1 = state; update_port1(); }
+ void write_fire1(int state) { m_fire1 = state; update_port1(); }
+ void write_up2(int state) { m_up2 = state; update_port2(); }
+ void write_down2(int state) { m_down2 = state; update_port2(); }
+ void write_fire2(int state) { m_fire2 = state; update_port2(); }
protected:
// device-level overrides