diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/emu/uiinput.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/emu/uiinput.cpp')
-rw-r--r-- | src/emu/uiinput.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/emu/uiinput.cpp b/src/emu/uiinput.cpp index 380dc5c16c9..a52df97679d 100644 --- a/src/emu/uiinput.cpp +++ b/src/emu/uiinput.cpp @@ -183,7 +183,7 @@ void ui_input_manager::reset() location of the mouse -------------------------------------------------*/ -render_target *ui_input_manager::find_mouse(INT32 *x, INT32 *y, bool *button) const +render_target *ui_input_manager::find_mouse(int32_t *x, int32_t *y, bool *button) const { if (x != nullptr) *x = m_current_mouse_x; @@ -284,7 +284,7 @@ g_profiler.stop(); move event to the specified render_target -------------------------------------------------*/ -void ui_input_manager::push_mouse_move_event(render_target* target, INT32 x, INT32 y) +void ui_input_manager::push_mouse_move_event(render_target* target, int32_t x, int32_t y) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_MOVE; @@ -312,7 +312,7 @@ void ui_input_manager::push_mouse_leave_event(render_target* target) down event to the specified render_target -------------------------------------------------*/ -void ui_input_manager::push_mouse_down_event(render_target* target, INT32 x, INT32 y) +void ui_input_manager::push_mouse_down_event(render_target* target, int32_t x, int32_t y) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_DOWN; @@ -327,7 +327,7 @@ void ui_input_manager::push_mouse_down_event(render_target* target, INT32 x, INT down event to the specified render_target -------------------------------------------------*/ -void ui_input_manager::push_mouse_up_event(render_target* target, INT32 x, INT32 y) +void ui_input_manager::push_mouse_up_event(render_target* target, int32_t x, int32_t y) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_UP; @@ -342,7 +342,7 @@ push_mouse_down_event - pushes a mouse down event to the specified render_target -------------------------------------------------*/ -void ui_input_manager::push_mouse_rdown_event(render_target* target, INT32 x, INT32 y) +void ui_input_manager::push_mouse_rdown_event(render_target* target, int32_t x, int32_t y) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_RDOWN; @@ -357,7 +357,7 @@ push_mouse_down_event - pushes a mouse down event to the specified render_target -------------------------------------------------*/ -void ui_input_manager::push_mouse_rup_event(render_target* target, INT32 x, INT32 y) +void ui_input_manager::push_mouse_rup_event(render_target* target, int32_t x, int32_t y) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_RUP; @@ -372,7 +372,7 @@ void ui_input_manager::push_mouse_rup_event(render_target* target, INT32 x, INT3 a mouse double-click event to the specified render_target -------------------------------------------------*/ -void ui_input_manager::push_mouse_double_click_event(render_target* target, INT32 x, INT32 y) +void ui_input_manager::push_mouse_double_click_event(render_target* target, int32_t x, int32_t y) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_DOUBLE_CLICK; @@ -400,7 +400,7 @@ void ui_input_manager::push_char_event(render_target* target, char32_t ch) 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) +void ui_input_manager::push_mouse_wheel_event(render_target *target, int32_t x, int32_t y, short delta, int ucNumLines) { ui_event event = { UI_EVENT_NONE }; event.event_type = UI_EVENT_MOUSE_WHEEL; |