Fixed condition for helper file

The check for including arm_helper or neon_helper was not correct in the
Makefile, fixed.
This commit is contained in:
Dimitris Panokostas 2016-12-18 13:11:59 +01:00
parent 8573cfab8e
commit 32e20ab859

View file

@ -198,10 +198,10 @@ OBJS += src/od-rasp/rasp_gfx.o
OBJS += src/od-pandora/gui/sdltruetypefont.o
OBJS += src/od-pandora/picasso96.o
ifdef USE_ARMNEON
OBJS += src/od-pandora/neon_helper.o
else
ifeq ($(PLATFORM),rpi1)
OBJS += src/od-pandora/arm_helper.o
else
OBJS += src/od-pandora/neon_helper.o
endif
OBJS += src/newcpu.o