summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/uiinput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/uiinput.cpp')
-rw-r--r--src/emu/uiinput.cpp16
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;