restore MESS reference in Makefile.common

this didn't affect my local make but it does seem to mess with the buildbot when this was removed
This commit is contained in:
markwkidd 2018-04-13 21:48:52 -04:00
parent f98276a4a4
commit 379baba68e

View File

@ -2251,6 +2251,11 @@ endif
SOUND=$(strip $(findstring NES@,$(SOUNDS)))
ifneq ($(SOUND),)
SOUNDDEFS += -DHAS_NES=1
ifndef MESS
SOURCES_C += $(CORE_DIR)/sound/nes_apu.c
else
SOURCES_C += $(CORE_DIR)/mess/sound/nes_apu2.c $(CORE_DIR)/mess/sound/nesintf.c
endif
else
SOUNDDEFS += -DHAS_NES=0
endif