From 0cf10d2b775a2fb0d908d975349325e23db26019 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Mon, 1 Oct 2018 22:16:20 -0500 Subject: [PATCH] Make s_info command display channels instead of stereo channels-1 was displayed as '# stereo', affectively a boolean for mono or stereo. However '3 stereo' for quad surround sound doesn't make sense. --- code/client/snd_dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/snd_dma.c b/code/client/snd_dma.c index efa8a116..ba4ac961 100644 --- a/code/client/snd_dma.c +++ b/code/client/snd_dma.c @@ -98,7 +98,7 @@ void S_Base_SoundInfo(void) { if (!s_soundStarted) { Com_Printf ("sound system not started\n"); } else { - Com_Printf("%5d stereo\n", dma.channels - 1); + Com_Printf("%5d channels\n", dma.channels); Com_Printf("%5d samples\n", dma.samples); Com_Printf("%5d samplebits (%s)\n", dma.samplebits, dma.isfloat ? "float" : "int"); Com_Printf("%5d submission_chunk\n", dma.submission_chunk);