just comments

This commit is contained in:
Stefano D'Angelo 2024-02-01 15:15:47 +01:00
parent 0605204593
commit 156374aca4
5 changed files with 5 additions and 5 deletions

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");