refactor(radio): change Reverb indices to size_t

This commit is contained in:
2026-04-05 19:14:57 +02:00
parent ae215691ca
commit 0d0980a1ef
+1 -1
View File
@@ -93,7 +93,7 @@ public:
class Reverb {
public:
std::vector<float> d1, d2, d3;
int p1 = 0, p2 = 0, p3 = 0;
size_t p1 = 0, p2 = 0, p3 = 0;
float feedback = 0.7f;
float mix = 0.0f;