From 21c828ee40db268f2e26b80e1c949dee71a0230a Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 5 Feb 2024 15:57:59 +0300 Subject: [PATCH] engine: sounds: remove extra logging --- engine/common/sounds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/sounds.c b/engine/common/sounds.c index 80e410b2..7f54e1ba 100644 --- a/engine/common/sounds.c +++ b/engine/common/sounds.c @@ -105,7 +105,7 @@ const char *SoundList_GetRandom( enum soundlst_group_e group ) int count = SoundList_Count( group ); int idx = COM_RandomLong( 0, count - 1 ); - Con_Printf( "%s: %s %d %d\n", __func__, soundlst_groups[group], count, idx ); + // Con_Printf( "%s: %s %d %d\n", __func__, soundlst_groups[group], count, idx ); return SoundList_Get( group, idx ); }