ft2-clone

Fasttracker 2 clone
Log | Files | Refs | README | LICENSE

commit 469933f85da9eb2b175a045388059b85140e7982
parent 222085f30fbe34639ba07ee5bf7ebc1a179384d6
Author: Olav Sørensen <olav.sorensen@live.no>
Date:   Thu,  4 Apr 2024 15:27:21 +0200

Change MAX_TAPS to 16

Diffstat:
Msrc/mixer/ft2_mix.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mixer/ft2_mix.h b/src/mixer/ft2_mix.h @@ -2,7 +2,7 @@ #include <stdint.h> -#define MAX_TAPS 32 +#define MAX_TAPS 16 #define MAX_LEFT_TAPS ((MAX_TAPS/2)-1) #define MAX_RIGHT_TAPS (MAX_TAPS/2)