mirror of
https://github.com/libretro/RetroArch
synced 2025-02-25 12:41:18 +00:00
Declare enum name, not a variable.
This commit is contained in:
parent
11b2ca07b5
commit
b68a95c72e
5
driver.h
5
driver.h
@ -205,7 +205,8 @@ typedef struct audio_driver
|
|||||||
#define GET_HAT_DIR(x) (x & HAT_MASK)
|
#define GET_HAT_DIR(x) (x & HAT_MASK)
|
||||||
#define GET_HAT(x) (x & (~HAT_MASK))
|
#define GET_HAT(x) (x & (~HAT_MASK))
|
||||||
|
|
||||||
enum {
|
enum input_devices
|
||||||
|
{
|
||||||
#if defined(ANDROID)
|
#if defined(ANDROID)
|
||||||
DEVICE_NONE = 0,
|
DEVICE_NONE = 0,
|
||||||
DEVICE_LOGITECH_RUMBLEPAD2,
|
DEVICE_LOGITECH_RUMBLEPAD2,
|
||||||
@ -264,7 +265,7 @@ enum {
|
|||||||
DEVICE_SIXAXIS = 0,
|
DEVICE_SIXAXIS = 0,
|
||||||
#endif
|
#endif
|
||||||
DEVICE_LAST
|
DEVICE_LAST
|
||||||
} device_enums;
|
};
|
||||||
|
|
||||||
enum analog_dpad_bind_enums
|
enum analog_dpad_bind_enums
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user