mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-26 21:36:26 +00:00
Move enum to menu_input.c
This commit is contained in:
parent
ae2dca3587
commit
b5a1cb6d12
@ -40,6 +40,17 @@
|
||||
#include "../input/input_remapping.h"
|
||||
#include "../input/input_common.h"
|
||||
|
||||
enum menu_mouse_action
|
||||
{
|
||||
MOUSE_ACTION_NONE = 0,
|
||||
MOUSE_ACTION_BUTTON_L,
|
||||
MOUSE_ACTION_BUTTON_L_TOGGLE,
|
||||
MOUSE_ACTION_BUTTON_L_SET_NAVIGATION,
|
||||
MOUSE_ACTION_BUTTON_R,
|
||||
MOUSE_ACTION_WHEEL_UP,
|
||||
MOUSE_ACTION_WHEEL_DOWN
|
||||
};
|
||||
|
||||
struct menu_bind_state_port
|
||||
{
|
||||
bool buttons[MENU_MAX_BUTTONS];
|
||||
|
@ -49,17 +49,6 @@ enum menu_action
|
||||
MENU_ACTION_POINTER_PRESSED
|
||||
};
|
||||
|
||||
enum menu_mouse_action
|
||||
{
|
||||
MOUSE_ACTION_NONE = 0,
|
||||
MOUSE_ACTION_BUTTON_L,
|
||||
MOUSE_ACTION_BUTTON_L_TOGGLE,
|
||||
MOUSE_ACTION_BUTTON_L_SET_NAVIGATION,
|
||||
MOUSE_ACTION_BUTTON_R,
|
||||
MOUSE_ACTION_WHEEL_UP,
|
||||
MOUSE_ACTION_WHEEL_DOWN
|
||||
};
|
||||
|
||||
enum menu_input_pointer_state
|
||||
{
|
||||
MENU_POINTER_X_AXIS = 0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user