summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/astrocde
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-08-15 12:21:42 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-08-15 12:21:42 -0400
commit211bda4a5350c35633c60995bb8dd111e197601f (patch)
tree1ae16e60dd4324ec46d38ee8230b101f77626555 /src/devices/bus/astrocde
parent9ad1f98b4fb6e4533baae5964e4e3a13a4241fd5 (diff)
ioport: Change PORT_CHANGED_MEMBER param type from void * to u32 (nw)
Diffstat (limited to 'src/devices/bus/astrocde')
-rw-r--r--src/devices/bus/astrocde/lightpen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/astrocde/lightpen.cpp b/src/devices/bus/astrocde/lightpen.cpp
index e31eed122be..07c5c7480ee 100644
--- a/src/devices/bus/astrocde/lightpen.cpp
+++ b/src/devices/bus/astrocde/lightpen.cpp
@@ -71,7 +71,7 @@ INPUT_CHANGED_MEMBER( astrocade_lightpen_device::trigger )
static INPUT_PORTS_START( astrocade_lightpen )
PORT_START("TRIGGER")
- PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_CHANGED_MEMBER(DEVICE_SELF, astrocade_lightpen_device, trigger, nullptr)
+ PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_CHANGED_MEMBER(DEVICE_SELF, astrocade_lightpen_device, trigger, 0)
PORT_BIT( 0xfe, IP_ACTIVE_HIGH, IPT_UNUSED )
PORT_START("LIGHTX")