Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed May 2, 2024
1 parent 62a0c47 commit 701aed0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rott/fx_mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ int FX_AllSoundsRTP(void)
{
if (FX_SoundActive(i))
{
if (channels[i].x || channels[i].y)
if (channels[i].x | channels[i].y)
{
SD_PanRTP(i, channels[i].x, channels[i].y);
}
Expand Down
1 change: 1 addition & 0 deletions rott/rt_playr.c
Original file line number Diff line number Diff line change
Expand Up @@ -5938,6 +5938,7 @@ void T_Player (objtype *ob)
}
#endif

// [FG] update all sound pannings relative to the player
SD_AllSoundsRTP();
}

Expand Down

0 comments on commit 701aed0

Please sign in to comment.