diff options
author | 2014-04-13 07:43:17 +0000 | |
---|---|---|
committer | 2014-04-13 07:43:17 +0000 | |
commit | 2899527ed41f36be30a809550d4120a1ce113fea (patch) | |
tree | e92be24777602c8f4f864436ae97cffa87f26ef8 /src/emu/bus/sms_ctrl/sportsjp.c | |
parent | 60463513720975699bf4ce34ffdffff577f74368 (diff) |
(MESS) sms: added support for Furrtek's multitap adapter (supported
by BOoM homebrew game). [Enik Land]
Diffstat (limited to 'src/emu/bus/sms_ctrl/sportsjp.c')
-rw-r--r-- | src/emu/bus/sms_ctrl/sportsjp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/sms_ctrl/sportsjp.c b/src/emu/bus/sms_ctrl/sportsjp.c index a9b181c1ee6..9e692e32abf 100644 --- a/src/emu/bus/sms_ctrl/sportsjp.c +++ b/src/emu/bus/sms_ctrl/sportsjp.c @@ -92,6 +92,7 @@ sms_sports_pad_jp_device::sms_sports_pad_jp_device(const machine_config &mconfig m_sports_jp_in(*this, "SPORTS_JP_IN"), m_sports_jp_x(*this, "SPORTS_JP_X"), m_sports_jp_y(*this, "SPORTS_JP_Y"), + m_read_state(0), m_interval(SPORTS_PAD_JP_INTERVAL) { } @@ -104,7 +105,6 @@ sms_sports_pad_jp_device::sms_sports_pad_jp_device(const machine_config &mconfig void sms_sports_pad_jp_device::device_start() { m_start_time = machine().time(); - m_read_state = 0; save_item(NAME(m_start_time)); save_item(NAME(m_read_state)); |