From 9606ea0dabfa5d6a4173332ae65f0fed2c2097a5 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Sun, 15 Mar 2020 02:22:04 +0100 Subject: [PATCH] Change count to int --- src/sfizz/Curve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Curve.cpp b/src/sfizz/Curve.cpp index 132d67d4..e1fa0592 100644 --- a/src/sfizz/Curve.cpp +++ b/src/sfizz/Curve.cpp @@ -153,7 +153,7 @@ void Curve::splineFill(const bool fillStatus[NumValues]) { std::array x; std::array y; - unsigned count = 0; + int count = 0; for (unsigned i = 0; i < NumValues; ++i) { if (fillStatus[i]) {