(PS3) Make GLUI the default menu driver now

This commit is contained in:
twinaphex 2015-07-14 16:21:08 +02:00
parent c02983bb9a
commit 59cf91980c
3 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ ifeq ($(HAVE_RLAUNCH), 1)
DEFINES += -DHAVE_RLAUNCH
endif
DEFINES += -DHAVE_MENU -DHAVE_RGUI -DRARCH_INTERNAL -DMSB_FIRST -DHAVE_OVERLAY
DEFINES += -DHAVE_MENU -DHAVE_RGUI -DHAVE_GLUI -DRARCH_INTERNAL -DMSB_FIRST -DHAVE_OVERLAY
ifeq ($(HAVE_GCMGL), 1)
DEFINES += -DHAVE_GCMGL

View File

@ -317,7 +317,7 @@ enum
#define MENU_DEFAULT_DRIVER MENU_RMENU
#elif defined(HAVE_RMENU_XUI)
#define MENU_DEFAULT_DRIVER MENU_RMENU_XUI
#elif defined(IOS) || defined(ANDROID)
#elif defined(IOS) || defined(ANDROID) || defined(__CELLOS_LV2__)
#define MENU_DEFAULT_DRIVER MENU_GLUI
#else
#define MENU_DEFAULT_DRIVER MENU_RGUI

View File

@ -754,10 +754,10 @@ static int glui_environ(menu_environ_cb_t type, void *data)
{
case 0:
default:
return -1;
break;
}
return 0;
return -1;
}
menu_ctx_driver_t menu_ctx_glui = {