Move enums to menu_input.c
This commit is contained in:
parent
3ddbf2d5cc
commit
7a5f2228aa
|
@ -39,6 +39,10 @@
|
|||
#include "../input/input_remapping.h"
|
||||
#include "../input/input_common.h"
|
||||
|
||||
#define MENU_MAX_BUTTONS 219
|
||||
#define MENU_MAX_AXES 32
|
||||
#define MENU_MAX_HATS 4
|
||||
|
||||
struct menu_bind_state_port
|
||||
{
|
||||
bool buttons[MENU_MAX_BUTTONS];
|
||||
|
|
|
@ -25,18 +25,6 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef MENU_MAX_BUTTONS
|
||||
#define MENU_MAX_BUTTONS 219
|
||||
#endif
|
||||
|
||||
#ifndef MENU_MAX_AXES
|
||||
#define MENU_MAX_AXES 32
|
||||
#endif
|
||||
|
||||
#ifndef MENU_MAX_HATS
|
||||
#define MENU_MAX_HATS 4
|
||||
#endif
|
||||
|
||||
#ifndef MAX_USERS
|
||||
#define MAX_USERS 16
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue