From 156374aca4379494ed66fa192401db6bea9837be Mon Sep 17 00:00:00 2001 From: Stefano D'Angelo Date: Thu, 1 Feb 2024 15:15:47 +0100 Subject: [PATCH] just comments --- include/bw_env_gen.h | 2 +- include/bw_hs2.h | 2 +- include/bw_ls2.h | 2 +- include/bw_one_pole.h | 2 +- include/bw_peak.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/bw_env_gen.h b/include/bw_env_gen.h index 7b4c505..8cb68bc 100644 --- a/include/bw_env_gen.h +++ b/include/bw_env_gen.h @@ -466,7 +466,7 @@ static inline void bw_env_gen_init( coeffs->skip_sustain = 0; coeffs->always_reach_sustain = 0; - coeffs->param_changed = ~0; + coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables #ifdef BW_DEBUG_DEEP coeffs->hash = bw_hash_sdbm("bw_env_gen_coeffs"); diff --git a/include/bw_hs2.h b/include/bw_hs2.h index 255fc95..0435d26 100644 --- a/include/bw_hs2.h +++ b/include/bw_hs2.h @@ -401,7 +401,7 @@ static inline void bw_hs2_init( coeffs->prewarp_freq = 1.f; coeffs->high_gain = 1.f; - coeffs->param_changed = ~0; + coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables #ifdef BW_DEBUG_DEEP coeffs->hash = bw_hash_sdbm("bw_hs2_coeffs"); diff --git a/include/bw_ls2.h b/include/bw_ls2.h index 7282f95..74a58e4 100644 --- a/include/bw_ls2.h +++ b/include/bw_ls2.h @@ -407,7 +407,7 @@ static inline void bw_ls2_init( coeffs->prewarp_freq = 1.f; coeffs->dc_gain = 1.f; - coeffs->param_changed = ~0; + coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables #ifdef BW_DEBUG_DEEP coeffs->hash = bw_hash_sdbm("bw_ls2_coeffs"); diff --git a/include/bw_one_pole.h b/include/bw_one_pole.h index 1e47bd7..220ffef 100644 --- a/include/bw_one_pole.h +++ b/include/bw_one_pole.h @@ -521,7 +521,7 @@ static inline void bw_one_pole_init( coeffs->sticky_thresh = 0.f; coeffs->sticky_mode = bw_one_pole_sticky_mode_abs; - coeffs->param_changed = ~0; // useless, just to make compilers happy about initialized variables + coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables #ifdef BW_DEBUG_DEEP coeffs->hash = bw_hash_sdbm("bw_one_pole_coeffs"); diff --git a/include/bw_peak.h b/include/bw_peak.h index cb7d680..0a7c064 100644 --- a/include/bw_peak.h +++ b/include/bw_peak.h @@ -436,7 +436,7 @@ static inline void bw_peak_init( coeffs->bandwidth = 2.543106606327224f; coeffs->use_bandwidth = 1; - coeffs->param_changed = ~0; + coeffs->param_changed = ~0; // useless, just to make compilers happy about uninitialized variables #ifdef BW_DEBUG_DEEP coeffs->hash = bw_hash_sdbm("bw_peak_coeffs");