One DISABLE_MENU buildfix

This commit is contained in:
twinaphex 2021-03-23 13:35:41 +01:00
parent fb737cb00f
commit 943c3f2f21
2 changed files with 8 additions and 7 deletions

View File

@ -17,6 +17,14 @@
#ifndef __INPUT_TYPES__H
#define __INPUT_TYPES__H
enum input_auto_game_focus_type
{
AUTO_GAME_FOCUS_OFF = 0,
AUTO_GAME_FOCUS_ON,
AUTO_GAME_FOCUS_DETECT,
AUTO_GAME_FOCUS_LAST
};
typedef struct rarch_joypad_driver input_device_driver_t;
typedef struct input_keyboard_line input_keyboard_line_t;
typedef struct rarch_joypad_info rarch_joypad_info_t;

View File

@ -401,13 +401,6 @@ enum quit_on_close_content_type
QUIT_ON_CLOSE_CONTENT_LAST
};
enum input_auto_game_focus_type
{
AUTO_GAME_FOCUS_OFF = 0,
AUTO_GAME_FOCUS_ON,
AUTO_GAME_FOCUS_DETECT,
AUTO_GAME_FOCUS_LAST
};
RETRO_END_DECLS