From 0f677c35f58437e9fe000581c7e7aed8d98f024c Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 18 Apr 2024 21:09:28 +0200 Subject: [PATCH] typo --- usermods/audioreactive/audio_reactive.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usermods/audioreactive/audio_reactive.h b/usermods/audioreactive/audio_reactive.h index c3efd367..c67299e8 100644 --- a/usermods/audioreactive/audio_reactive.h +++ b/usermods/audioreactive/audio_reactive.h @@ -564,7 +564,7 @@ void FFTcode(void * parameter) newZeroCrossingCount++; } } - newZeroCrossingCount = (newZeroCrossingCount*2)/3; // reduce value so it typicially stays below 256 + newZeroCrossingCount = (newZeroCrossingCount*2)/3; // reduce value so it typically stays below 256 zeroCrossingCount = newZeroCrossingCount; // update only once, to avoid that effects pick up an intermediate value // release highest sample to volume reactive effects early - not strictly necessary here - could also be done at the end of the function