(GLUI) Start renaming 'glui' 'materialui' under the hood
This commit is contained in:
parent
71ca469cda
commit
3be9b2752b
|
@ -390,7 +390,7 @@ ifeq ($(HAVE_RGUI), 1)
|
|||
DEFINES += -DHAVE_MENU -DHAVE_RGUI
|
||||
HAVE_MENU_COMMON = 1
|
||||
ifeq ($(HAVE_GLUI), 1)
|
||||
OBJ += menu/drivers/glui.o
|
||||
OBJ += menu/drivers/materialui.o
|
||||
DEFINES += -DHAVE_GLUI
|
||||
endif
|
||||
ifeq ($(HAVE_ZARCH), 1)
|
||||
|
|
|
@ -834,7 +834,7 @@ MENU
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_GLUI
|
||||
#include "../menu/drivers/glui.c"
|
||||
#include "../menu/drivers/materialui.c"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_ZARCH
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -31,7 +31,7 @@ static const menu_ctx_driver_t *menu_ctx_drivers[] = {
|
|||
&menu_ctx_rmenu_xui,
|
||||
#endif
|
||||
#if defined(HAVE_GLUI)
|
||||
&menu_ctx_glui,
|
||||
&menu_ctx_materialui,
|
||||
#endif
|
||||
#if defined(HAVE_XMB)
|
||||
&menu_ctx_xmb,
|
||||
|
|
|
@ -143,7 +143,7 @@ typedef struct menu_ctx_driver
|
|||
extern menu_ctx_driver_t menu_ctx_rmenu;
|
||||
extern menu_ctx_driver_t menu_ctx_rmenu_xui;
|
||||
extern menu_ctx_driver_t menu_ctx_rgui;
|
||||
extern menu_ctx_driver_t menu_ctx_glui;
|
||||
extern menu_ctx_driver_t menu_ctx_materialui;
|
||||
extern menu_ctx_driver_t menu_ctx_xmb;
|
||||
extern menu_ctx_driver_t menu_ctx_zarch;
|
||||
extern menu_ctx_driver_t menu_ctx_null;
|
||||
|
|
Loading…
Reference in New Issue