X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=snd_sdl.c;h=e93d302113f31e5cb509faa5f5824c584ae21a1f;hp=68c84cdbe116fbd1195573b36f5f34c14caeeb57;hb=6536be64bd178fe115a12c60296b0b5d8b2ca828;hpb=d1c3f1065fde02ed39b7eecc2d9b9a637388d091 diff --git a/snd_sdl.c b/snd_sdl.c index 68c84cdb..e93d3021 100644 --- a/snd_sdl.c +++ b/snd_sdl.c @@ -19,7 +19,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include -#include "quakedef.h" +#include "darkplaces.h" +#include "vid.h" #include "snd_main.h" @@ -102,7 +103,7 @@ Create "snd_renderbuffer" with the proper sound format if the call is successful May return a suggested format if the requested format isn't available ==================== */ -qboolean SndSys_Init (snd_format_t* fmt) +qbool SndSys_Init (snd_format_t* fmt) { unsigned int buffersize; SDL_AudioSpec wantspec; @@ -220,7 +221,7 @@ SndSys_LockRenderBuffer Get the exclusive lock on "snd_renderbuffer" ==================== */ -qboolean SndSys_LockRenderBuffer (void) +qbool SndSys_LockRenderBuffer (void) { SDL_LockAudioDevice(audio_device); return true;