Skip to content

Commit

Permalink
style fix for PannerNode
Browse files Browse the repository at this point in the history
  • Loading branch information
khodzha committed Jan 28, 2020
1 parent f5f10c4 commit b5f1516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audio/panner_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ impl AudioNodeEngine for PannerNode {
let x = if mono {
(azimuth + 90.) / 180.
} else if azimuth <= 0. {
(azimuth + 90. / 90.)
(azimuth + 90.) / 90.
} else {
azimuth / 90.
};
Expand Down

0 comments on commit b5f1516

Please sign in to comment.