From 9c9fa86760d771ff06b773748d3ebc442bc0bd20 Mon Sep 17 00:00:00 2001 From: Wumbo <58399748+WumboSpasm@users.noreply.github.com> Date: Mon, 1 Sep 2025 11:30:20 -0400 Subject: [PATCH] Fix Ring Racers music being too loud --- src/s_sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s_sound.c b/src/s_sound.c index f5e518c6e..c3189a790 100644 --- a/src/s_sound.c +++ b/src/s_sound.c @@ -1525,7 +1525,7 @@ ReadMusicDefFields } else if (!stricmp(stoken, "volume")) { - def->volume = atoi(textline); + def->volume = atoi(textline) / VOLUME_DIVIDER; def->legacy = false; } else if (!stricmp(stoken, "contentidunsafe"))