levels.convert

- hidden, float -> single
This commit is contained in:
pblivingston 2025-12-09 05:47:11 -05:00
parent 618f4a8462
commit a2b75fa21b

View File

@ -46,7 +46,7 @@ class StripLevels : IRemote {
} }
} }
[float] Convert([float]$val) { hidden [single] Convert([single]$val) {
if ($val -gt 0) { if ($val -gt 0) {
return [math]::Round(20 * [math]::Log10($val), 1) return [math]::Round(20 * [math]::Log10($val), 1)
} }