summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/vcs_keypad.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-03-26 15:18:37 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-03-26 15:18:37 +0000
commit051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch)
tree7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/mess/machine/vcs_keypad.c
parentffbe9bdcca43cb1f645cc0387f0835523471b97a (diff)
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/mess/machine/vcs_keypad.c')
-rw-r--r--src/mess/machine/vcs_keypad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/vcs_keypad.c b/src/mess/machine/vcs_keypad.c
index 55685ae0c8b..7965e38f4da 100644
--- a/src/mess/machine/vcs_keypad.c
+++ b/src/mess/machine/vcs_keypad.c
@@ -55,7 +55,7 @@ ioport_constructor vcs_keypad_device::device_input_ports() const
//-------------------------------------------------
vcs_keypad_device::vcs_keypad_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, VCS_KEYPAD, "Keypad", tag, owner, clock),
+ device_t(mconfig, VCS_KEYPAD, "Keypad", tag, owner, clock, "vcs_keypad", __FILE__),
device_vcs_control_port_interface(mconfig, *this),
m_keypad(*this, "KEYPAD")
{