From a2b75fa21bf35e0943c477ed340ac46fe015bb60 Mon Sep 17 00:00:00 2001 From: pblivingston <71585805+pblivingston@users.noreply.github.com> Date: Tue, 9 Dec 2025 05:47:11 -0500 Subject: [PATCH] levels.convert - hidden, float -> single --- lib/strip.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/strip.ps1 b/lib/strip.ps1 index ec4f275..6595322 100644 --- a/lib/strip.ps1 +++ b/lib/strip.ps1 @@ -46,7 +46,7 @@ class StripLevels : IRemote { } } - [float] Convert([float]$val) { + hidden [single] Convert([single]$val) { if ($val -gt 0) { return [math]::Round(20 * [math]::Log10($val), 1) }