diff --git a/makefile b/makefile index 3631efd6dc1..66760d2574f 100644 --- a/makefile +++ b/makefile @@ -931,7 +931,7 @@ $(EMULATOR): $(EMUINFOOBJ) $(DRIVLISTOBJ) $(DRVLIBS) $(LIBOSD) $(LIBBUS) $(LIBOP $(CC) $(CDEFS) $(CFLAGS) -c $(SRC)/version.c -o $(VERSIONOBJ) @echo Linking $@... ifeq ($(TARGETOS),emscripten) - # Emscripten's linker seems to be stricter about the ordering of .a files +# Emscripten's linker seems to be stricter about the ordering of .a files $(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) -Wl,--start-group $^ -Wl,--end-group $(LIBS) -o $@ else $(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) $^ $(LIBS) -o $@ diff --git a/src/osd/modules/sound/sdl_sound.c b/src/osd/modules/sound/sdl_sound.c index 1c80ab85082..185cb9976e7 100644 --- a/src/osd/modules/sound/sdl_sound.c +++ b/src/osd/modules/sound/sdl_sound.c @@ -12,7 +12,7 @@ #include "sound_module.h" #include "modules/osdmodule.h" -#if (!defined(SDLMAME_EMSCRIPTEN)) && (!defined(OSD_WINDOWS)) +#if (!defined(OSD_WINDOWS)) // standard sdl header #include "../../sdl/sdlinc.h"