fix issue in chimer

This commit is contained in:
2025-03-27 21:33:03 +01:00
parent a345743853
commit 3238e156dd
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
#include "oscillator.h"
#if USE_NEON
#define LPF_ORDER 12 // neon has to have divisable by 4
#define LPF_ORDER 20 // neon has to have divisable by 4
#else
#define LPF_ORDER 10
#endif
-1
View File
@@ -111,7 +111,6 @@ void generate_signal(float *output, int buffer_size, Oscillator *osc, float volu
(*elapsed_samples) += 4;
}
}
}
#else
for (int i = 0; i < buffer_size; i++) {
if (*elapsed_samples >= total_samples) {