- Duke: fixed pitch calculation for explosion sounds.

This part was missed when the backend's pitch management was changed to floats instead of Q1.7 fixed point numbers.
This commit is contained in:
Christoph Oelckers 2023-04-10 09:13:33 +02:00
parent 7b1ef9e020
commit 1d79d0cee3

View file

@ -527,7 +527,7 @@ int S_PlaySound3D(FSoundID soundid, DDukeActor* actor, const DVector3& pos, int
{
if (explosion && underwater)
{
pitch = float(chan->Pitch? chan->Pitch * (0.55 / 128) : 0.55); // todo: fix pitch storage in backend.
pitch = float(chan->Pitch? chan->Pitch * 0.55 : 0.55); // todo: fix pitch storage in backend.
soundEngine->SetPitch(chan, pitch);
}
chan->UserData = (currentCommentarySound != NO_SOUND);