fix type error in getLevel

This commit is contained in:
onyx-and-iris
2022-10-04 20:18:26 +01:00
parent 5bb7eb9668
commit 7022c5dacf
2 changed files with 4 additions and 4 deletions

View File

@@ -28,8 +28,8 @@ func roundFloat(val float64, precision uint) float64 {
// convertLevel performs the necessary math for a channel level
func convertLevel(i float64) float64 {
if i > 0 {
val := 20 * math.Log10(float64(i))
return float64(roundFloat(float64(val), 1))
val := 20 * math.Log10(i)
return roundFloat(val, 1)
}
return -200.0
}