1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Change typo

This commit is contained in:
twinaphex 2016-02-25 23:40:27 +01:00
parent b171be802e
commit ac084a5175
4 changed files with 8 additions and 8 deletions

View File

@ -382,8 +382,8 @@ ifeq ($(HW_CONTEXT_MENU_DRIVERS), 1)
HAVE_MATERIALUI = 1
endif
#ifeq ($(HAVE_ZAHRAND),)
#HAVE_ZAHRAND = 1
#ifeq ($(HAVE_ZAHNRAD),)
#HAVE_ZAHNRAD = 1
#endif
ifeq ($(HAVE_XMB),)
@ -392,7 +392,7 @@ ifeq ($(HW_CONTEXT_MENU_DRIVERS), 1)
else
HAVE_ZARCH = 0
HAVE_MATERIALUI = 0
#HAVE_ZAHRAND = 0
#HAVE_ZAHNRAD = 0
HAVE_XMB = 0
endif
@ -404,10 +404,10 @@ ifeq ($(HAVE_MATERIALUI), 1)
OBJ += menu/drivers/materialui.o
DEFINES += -DHAVE_MATERIALUI
endif
ifeq ($(HAVE_ZAHRAND), 1)
ifeq ($(HAVE_ZAHNRAD), 1)
OBJ += deps/zahnrad/zahnrad.o
OBJ += menu/drivers/zr.o
DEFINES += -DHAVE_ZAHRAND
DEFINES += -DHAVE_ZAHNRAD
endif
ifeq ($(HAVE_ZARCH), 1)
OBJ += menu/drivers/zarch.o

View File

@ -869,7 +869,7 @@ MENU
#include "../menu/drivers/materialui.c"
#endif
#ifdef HAVE_ZAHRAND
#ifdef HAVE_ZAHNRAD
#include "../deps/zahnrad/zahnrad.c"
#include "../menu/drivers/zr.c"
#endif

View File

@ -45,7 +45,7 @@ static const menu_ctx_driver_t *menu_ctx_drivers[] = {
#if defined(HAVE_MATERIALUI)
&menu_ctx_mui,
#endif
#if defined(HAVE_ZAHRAND)
#if defined(HAVE_ZAHNRAD)
&menu_ctx_zr,
#endif
#if defined(HAVE_XMB)

View File

@ -3,7 +3,7 @@ HAVE_RGUI=yes # Disable RGUI menu
HAVE_MATERIALUI=auto # Enable MaterialUI menu
HAVE_CHEEVOS=no # Enable Cheevos (achievements)
HAVE_XMB=auto # Enable XMB menu
HAVE_ZAHRAND=no # Enable Zahrand menu
HAVE_ZAHNRAD=no # Enable Zahnrad menu
HAVE_DYNAMIC=yes # Disable dynamic loading of libretro library
HAVE_SDL=auto # SDL support
HAVE_SDL2=auto # SDL2 support (disables SDL 1.x)