diff options
Diffstat (limited to 'src/devices/bus/pet/petuja.h')
-rw-r--r-- | src/devices/bus/pet/petuja.h | 12 |
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 |