diff options
author | 2015-01-27 09:03:49 +0100 | |
---|---|---|
committer | 2015-01-27 09:03:49 +0100 | |
commit | a7b55252fdc8acce70145fc91c6af5bcf20d3915 (patch) | |
tree | a6e1a941058c19180b3c17ab8ab6bfe4a37690bc /src/emu/bus/vcs_ctrl/joybooster.c | |
parent | 8453d27f764c133c3a21c20ed0cf7a60e3c6f30a (diff) |
make sure that controller devices don't get duplicate descriptions
in listxml output. nw.
Diffstat (limited to 'src/emu/bus/vcs_ctrl/joybooster.c')
-rw-r--r-- | src/emu/bus/vcs_ctrl/joybooster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/vcs_ctrl/joybooster.c b/src/emu/bus/vcs_ctrl/joybooster.c index e2654968dc8..22b892f4bf7 100644 --- a/src/emu/bus/vcs_ctrl/joybooster.c +++ b/src/emu/bus/vcs_ctrl/joybooster.c @@ -58,7 +58,7 @@ ioport_constructor vcs_joystick_booster_device::device_input_ports() const //------------------------------------------------- vcs_joystick_booster_device::vcs_joystick_booster_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, VCS_JOYSTICK_BOOSTER, "Digital joystick with Boostergrip", tag, owner, clock, "vcs_joystick_booster", __FILE__), + device_t(mconfig, VCS_JOYSTICK_BOOSTER, "Atari / CBM Digital joystick with Boostergrip", tag, owner, clock, "vcs_joystick_booster", __FILE__), device_vcs_control_port_interface(mconfig, *this), m_joy(*this, "JOY"), m_potx(*this, "POTX"), |