From c81863ef7185880b555756c7c3c60da709049121 Mon Sep 17 00:00:00 2001 From: Yamagi Burmeister Date: Sat, 19 Jun 2010 19:10:31 +0000 Subject: [PATCH] snd_local.h -> header/local.h --- client-todo | 2 ++ src/client/sound/{snd_local.h => header/local.h} | 0 src/client/sound/snd_dma.c | 2 +- src/client/sound/snd_mem.c | 2 +- src/client/sound/snd_mix.c | 2 +- src/client/sound/snd_vorbis.c | 2 +- src/client/sound/snd_wav.c | 2 +- src/sdl/sound.c | 2 +- 8 files changed, 8 insertions(+), 6 deletions(-) rename src/client/sound/{snd_local.h => header/local.h} (100%) diff --git a/client-todo b/client-todo index 14cd97f6..8bc3777e 100644 --- a/client-todo +++ b/client-todo @@ -26,3 +26,5 @@ cvar s_primary ist überflüssig Voice over Network ist disfunktional auf nicht-windows systemen und eh schrott. ab damit in den müll? + +Vorbis statt OGG diff --git a/src/client/sound/snd_local.h b/src/client/sound/header/local.h similarity index 100% rename from src/client/sound/snd_local.h rename to src/client/sound/header/local.h diff --git a/src/client/sound/snd_dma.c b/src/client/sound/snd_dma.c index 61ff2c6d..c8521e3f 100644 --- a/src/client/sound/snd_dma.c +++ b/src/client/sound/snd_dma.c @@ -28,7 +28,7 @@ */ #include "../header/client.h" -#include "snd_local.h" +#include "header/local.h" #include "header/vorbis.h" void S_Play(void); diff --git a/src/client/sound/snd_mem.c b/src/client/sound/snd_mem.c index 7bec47a8..975f1416 100644 --- a/src/client/sound/snd_mem.c +++ b/src/client/sound/snd_mem.c @@ -28,7 +28,7 @@ */ #include "../header/client.h" -#include "snd_local.h" +#include "header/local.h" int cache_full_cycle; byte *S_Alloc (int size); diff --git a/src/client/sound/snd_mix.c b/src/client/sound/snd_mix.c index c9d7d6d9..7392e0e6 100644 --- a/src/client/sound/snd_mix.c +++ b/src/client/sound/snd_mix.c @@ -27,7 +27,7 @@ */ #include "../header/client.h" -#include "snd_local.h" +#include "header/local.h" #define PAINTBUFFER_SIZE 8192 diff --git a/src/client/sound/snd_vorbis.c b/src/client/sound/snd_vorbis.c index 59814eea..26294535 100644 --- a/src/client/sound/snd_vorbis.c +++ b/src/client/sound/snd_vorbis.c @@ -33,7 +33,7 @@ #include #include "../header/client.h" -#include "snd_local.h" +#include "header/local.h" #include "header/vorbis.h" extern int sound_started; /* Sound initialization flag. */ diff --git a/src/client/sound/snd_wav.c b/src/client/sound/snd_wav.c index 7114c47b..cc951280 100644 --- a/src/client/sound/snd_wav.c +++ b/src/client/sound/snd_wav.c @@ -25,7 +25,7 @@ */ #include "../header/client.h" -#include "snd_local.h" +#include "header/local.h" byte *data_p; byte *iff_end; diff --git a/src/sdl/sound.c b/src/sdl/sound.c index 173a5611..35e76209 100644 --- a/src/sdl/sound.c +++ b/src/sdl/sound.c @@ -28,7 +28,7 @@ #include "SDL.h" #include "../client/header/client.h" -#include "../client/sound/snd_local.h" +#include "../client/sound/header/local.h" static int snd_inited; static dma_t *shm;