X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=snd_sdl.c;h=e93d302113f31e5cb509faa5f5824c584ae21a1f;hb=dda36cceb63d6454348bb583db55f85dd203bb4a;hp=98169a0672d9423e7fff5ffd856dc8566e5ef15a;hpb=a73fbc63d322dcc3b28792e5842ae04135f4bf8f;p=xonotic%2Fdarkplaces.git diff --git a/snd_sdl.c b/snd_sdl.c index 98169a06..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; @@ -138,7 +139,7 @@ qboolean SndSys_Init (snd_format_t* fmt) if ((audio_device = SDL_OpenAudioDevice(NULL, 0, &wantspec, &obtainspec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE | SDL_AUDIO_ALLOW_CHANNELS_CHANGE)) == 0) { - Con_Errorf( "Failed to open the audio device! (%s)\n", SDL_GetError() ); + Con_Printf(CON_ERROR "Failed to open the audio device! (%s)\n", SDL_GetError() ); return false; } @@ -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;