From d002d903c78461b587c27b16f26b0d7fbd4b9815 Mon Sep 17 00:00:00 2001 From: Charlie Birks Date: Wed, 10 Feb 2021 22:02:18 +0000 Subject: [PATCH] Decrease sound volume They're way louder than the music --- src/blit/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blit/sound.cpp b/src/blit/sound.cpp index f79d9c0..1bdcf2c 100644 --- a/src/blit/sound.cpp +++ b/src/blit/sound.cpp @@ -182,7 +182,7 @@ static void I_Blit_UpdateSoundParams(int handle, int vol, int sep) if(handle >= SOUND_CHANNELS) return; - blit::channels[handle].volume = vol * 222; + blit::channels[handle].volume = vol * 111; } static int I_Blit_StartSound(sfxinfo_t *sfxinfo, int channel, int vol, int sep)