Previous 199869 Revisions Next

r34705 Wednesday 28th January, 2015 at 18:28:42 UTC by R. Belmont
Merge pull request #121 from p1pkin/jvs

jvs host: fix packet encoding, similar to previous [MetalliC]
[/trunk]makefile
[src/osd/modules/sound]sdl_sound.c

trunk/makefile
r243216r243217
931931   $(CC) $(CDEFS) $(CFLAGS) -c $(SRC)/version.c -o $(VERSIONOBJ)
932932   @echo Linking $@...
933933ifeq ($(TARGETOS),emscripten)
934   # Emscripten's linker seems to be stricter about the ordering of .a files
934# Emscripten's linker seems to be stricter about the ordering of .a files
935935   $(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) -Wl,--start-group $^ -Wl,--end-group $(LIBS) -o $@
936936else
937937   $(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $(VERSIONOBJ) $^ $(LIBS) -o $@
trunk/src/osd/modules/sound/sdl_sound.c
r243216r243217
1212#include "sound_module.h"
1313#include "modules/osdmodule.h"
1414
15#if (!defined(SDLMAME_EMSCRIPTEN)) && (!defined(OSD_WINDOWS))
15#if (!defined(OSD_WINDOWS))
1616
1717// standard sdl header
1818#include "../../sdl/sdlinc.h"


Previous 199869 Revisions Next


© 1997-2024 The MAME Team