From abefc800d9f467f64cefed26e53f2edf415086de Mon Sep 17 00:00:00 2001 From: Gabriel Ozouf Date: Mon, 4 Jan 2021 16:48:51 +0100 Subject: [PATCH] [interactive_curve_view_range] Fix variable type --- apps/shared/interactive_curve_view_range.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shared/interactive_curve_view_range.cpp b/apps/shared/interactive_curve_view_range.cpp index a45bad573..770fd43ef 100644 --- a/apps/shared/interactive_curve_view_range.cpp +++ b/apps/shared/interactive_curve_view_range.cpp @@ -287,7 +287,7 @@ bool InteractiveCurveViewRange::shouldBeNormalized() const { } bool InteractiveCurveViewRange::isOrthonormal() const { - float significantBits = normalizationSignificantBits(); + int significantBits = normalizationSignificantBits(); if (significantBits <= 0) { return false; }