This commit is contained in:
Simon Gardling 2022-02-24 01:13:20 -05:00
parent 98aac84e71
commit 8601e1e38f

View File

@ -124,9 +124,9 @@ impl ChartManager {
// Applies `half_step` in order to make the bar graph display properly
if output.0 > 0.0 {
output.0 = output.0 + half_step;
output.0 += half_step;
} else {
output.0 = output.0 - half_step;
output.0 -= half_step;
}
output