summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/uiinput.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-11 11:32:39 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-11 11:32:39 +0100
commit3c1ea41741e291681e8f33564e38f9529228ee81 (patch)
tree937e92d1419a60a6ba7ede883f34927340076402 /src/emu/uiinput.cpp
parent65458d447f13a2d62f45c3bf2e01053d20967c23 (diff)
let's use our templates to clear (nw)
Diffstat (limited to 'src/emu/uiinput.cpp')
-rw-r--r--src/emu/uiinput.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/uiinput.cpp b/src/emu/uiinput.cpp
index 241bcd6370a..3f9b95021e7 100644
--- a/src/emu/uiinput.cpp
+++ b/src/emu/uiinput.cpp
@@ -43,10 +43,6 @@ ui_input_manager::ui_input_manager(running_machine &machine)
m_current_mouse_x = -1;
m_current_mouse_y = -1;
- memset(m_next_repeat, 0, sizeof(m_next_repeat));
- memset(m_seqpressed, 0, sizeof(m_seqpressed));
- memset(m_events, 0, sizeof(m_events));
-
/* add a frame callback to poll inputs */
machine.add_notifier(MACHINE_NOTIFY_FRAME, machine_notify_delegate(FUNC(ui_input_manager::frame_update), this));
}