From 7d0117c183eb061b3955030ef829317700ff09c5 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 3 Oct 2025 20:17:20 +0100 Subject: [PATCH] Make sound channel exhaustion warning a Com_DPrintf --- 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 689f4e8f..fd2a7861 100644 --- a/code/client/snd_dma.c +++ b/code/client/snd_dma.c @@ -620,7 +620,7 @@ static void S_Base_StartSoundEx( vec3_t origin, int entityNum, int entchannel, s } } if (chosen == -1) { - Com_Printf("dropping sound\n"); + Com_DPrintf("dropping sound\n"); return; } }