From: cloudwalk Date: Fri, 5 Jun 2020 13:42:52 +0000 (+0000) Subject: Change tabs into spaces for a console print so it does not show weird glyphs ingame X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a73fbc63d322dcc3b28792e5842ae04135f4bf8f;p=xonotic%2Fdarkplaces.git Change tabs into spaces for a console print so it does not show weird glyphs ingame git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12639 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/snd_sdl.c b/snd_sdl.c index 2d1f94a6..98169a06 100644 --- a/snd_sdl.c +++ b/snd_sdl.c @@ -130,10 +130,10 @@ qboolean SndSys_Init (snd_format_t* fmt) wantspec.samples = CeilPowerOf2(buffersize); // needs to be a power of 2 on some platforms. Con_Printf("Wanted audio Specification:\n" - "\tChannels : %i\n" - "\tFormat : 0x%X\n" - "\tFrequency : %i\n" - "\tSamples : %i\n", + " Channels : %i\n" + " Format : 0x%X\n" + " Frequency : %i\n" + " Samples : %i\n", wantspec.channels, wantspec.format, wantspec.freq, wantspec.samples); if ((audio_device = SDL_OpenAudioDevice(NULL, 0, &wantspec, &obtainspec, SDL_AUDIO_ALLOW_FREQUENCY_CHANGE | SDL_AUDIO_ALLOW_CHANNELS_CHANGE)) == 0) @@ -143,10 +143,10 @@ qboolean SndSys_Init (snd_format_t* fmt) } Con_Printf("Obtained audio specification:\n" - "\tChannels : %i\n" - "\tFormat : 0x%X\n" - "\tFrequency : %i\n" - "\tSamples : %i\n", + " Channels : %i\n" + " Format : 0x%X\n" + " Frequency : %i\n" + " Samples : %i\n", obtainspec.channels, obtainspec.format, obtainspec.freq, obtainspec.samples); fmt->speed = obtainspec.freq;