From 1d79d0cee347d8dcff9e85b2e9bc39caefbea9e5 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 10 Apr 2023 09:13:33 +0200 Subject: [PATCH] - 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. --- source/games/duke/src/sounds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/sounds.cpp b/source/games/duke/src/sounds.cpp index 6e687cb41..a3493c40f 100644 --- a/source/games/duke/src/sounds.cpp +++ b/source/games/duke/src/sounds.cpp @@ -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);