Fix typo in Makefile.common when comparing for HAVE_MATERIALUI, HAVE_XMB and HAVE_OZONE

This commit is contained in:
Francisco Javier Trujillo Mata 2022-03-15 22:48:28 +01:00 committed by Autechre
parent 646b0f7209
commit a404689894

View File

@ -1000,15 +1000,15 @@ ifeq ($(HW_CONTEXT_MENU_DRIVERS), 1)
HAVE_RGUI = 1
endif
ifeq ($(HAVE_MATERIALUI),)
ifeq ($(HAVE_MATERIALUI), 1)
HAVE_MATERIALUI = 1
endif
ifeq ($(HAVE_XMB),)
ifeq ($(HAVE_XMB), 1)
HAVE_XMB = 1
endif
ifeq ($(HAVE_OZONE),)
ifeq ($(HAVE_OZONE), 1)
HAVE_OZONE = 1
endif
else