mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- 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:
parent
7b1ef9e020
commit
1d79d0cee3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue