Fix Ring Racers music being too loud

This commit is contained in:
Wumbo 2025-09-01 11:30:20 -04:00
parent 98bf3a5a36
commit 9c9fa86760

View file

@ -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"))