* Removed the redundant "sound system is muted" message

* Moved printing of desired audiospec to before SDL_OpenAudio
* When the computed value for samples is not a power of 2, now pick the smallest power of 2 greater rather than the largest power of 2 smaller
This commit is contained in:
Tim Angus 2005-09-24 01:26:51 +00:00
parent fe14a45ad1
commit f0bd20e00a
2 changed files with 2 additions and 6 deletions

View file

@ -109,10 +109,6 @@ void S_SoundInfo_f(void) {
if (!s_soundStarted) {
Com_Printf ("sound system not started\n");
} else {
if ( s_soundMuted ) {
Com_Printf ("sound system is muted\n");
}
Com_Printf("%5d stereo\n", dma.channels - 1);
Com_Printf("%5d samples\n", dma.samples);
Com_Printf("%5d samplebits\n", dma.samplebits);