diff options
Diffstat (limited to 'src/emu/uiinput.cpp')
-rw-r--r-- | src/emu/uiinput.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/uiinput.cpp b/src/emu/uiinput.cpp index c55038d3065..1b65388bc14 100644 --- a/src/emu/uiinput.cpp +++ b/src/emu/uiinput.cpp @@ -2,7 +2,7 @@ // copyright-holders:Nicola Salmoria /*************************************************************************** - uiinput.c + uiinput.cpp Internal MAME user interface input state. ***************************************************************************/ @@ -326,8 +326,8 @@ void ui_input_manager::push_char_event(render_target* target, unicode_char ch) } /*------------------------------------------------- - push_mouse_wheel_event - pushes a mouse - wheel event to the specified render_target + push_mouse_wheel_event - pushes a mouse + wheel event to the specified render_target -------------------------------------------------*/ void ui_input_manager::push_mouse_wheel_event(render_target *target, INT32 x, INT32 y, short delta, int ucNumLines) @@ -350,4 +350,4 @@ void ui_input_manager::mark_all_as_pressed() { for (int code = IPT_UI_FIRST + 1; code < IPT_UI_LAST; code++) m_next_repeat[code] = osd_ticks(); -}
\ No newline at end of file +} |