mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
(iOS) Add default menu driver setting
This commit is contained in:
parent
739cd59dc9
commit
5089473355
@ -122,6 +122,7 @@ enum
|
||||
MENU_LAKKA,
|
||||
MENU_GLUI,
|
||||
MENU_XMB,
|
||||
MENU_IOS,
|
||||
};
|
||||
|
||||
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES) || defined(__CELLOS_LV2__)
|
||||
@ -294,7 +295,9 @@ enum
|
||||
#define OSK_DEFAULT_DRIVER OSK_NULL
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_RMENU)
|
||||
#if defined(IOS)
|
||||
#define MENU_DEFAULT_DRIVER MENU_IOS
|
||||
#elif defined(HAVE_RMENU)
|
||||
#define MENU_DEFAULT_DRIVER MENU_RMENU
|
||||
#elif defined(HAVE_RMENU_XUI)
|
||||
#define MENU_DEFAULT_DRIVER MENU_RMENU_XUI
|
||||
|
@ -232,6 +232,8 @@ const char *config_get_default_menu(void)
|
||||
return "lakka";
|
||||
case MENU_GLUI:
|
||||
return "glui";
|
||||
case MENU_IOS:
|
||||
return "ios";
|
||||
case MENU_XMB:
|
||||
return "xmb";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user