From 7f137ac4937541cd48959c6e2c5ea427ee720168 Mon Sep 17 00:00:00 2001 From: Kp Date: Thu, 21 Feb 2013 00:05:51 +0000 Subject: [PATCH] Move arch_sdlmixer to the same relative position as in D2X SConstruct --- SConstruct | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/SConstruct b/SConstruct index 575908928..1f99c4155 100644 --- a/SConstruct +++ b/SConstruct @@ -232,6 +232,13 @@ editor_sources = [ 'ui/userbox.c' ] +# SDL_mixer sound implementation +arch_sdlmixer = [ +'arch/sdl/digi_mixer.c', +'arch/sdl/digi_mixer_music.c', +'arch/sdl/jukebox.c' +] + # for opengl arch_ogl_sources = [ 'arch/ogl/gr.c', @@ -253,13 +260,6 @@ asm_sources = [ 'texmap/tmap_per.asm' ] -# SDL_mixer sound implementation -arch_sdlmixer = [ -'arch/sdl/digi_mixer.c', -'arch/sdl/digi_mixer_music.c', -'arch/sdl/jukebox.c' -] - # Acquire environment object... env = Environment(ENV = os.environ, tools = ['mingw'])