mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-11 05:11:33 +00:00
remove redundant debug vars for fluid_voice_t
This commit is contained in:
parent
7fb3a93e83
commit
69d41ae5ec
2 changed files with 0 additions and 7 deletions
|
@ -268,7 +268,6 @@ fluid_voice_init(fluid_voice_t* voice, fluid_sample_t* sample,
|
|||
voice->channel = channel;
|
||||
voice->mod_count = 0;
|
||||
voice->start_time = start_time;
|
||||
voice->debug = 0;
|
||||
voice->has_noteoff = 0;
|
||||
UPDATE_RVOICE0(fluid_rvoice_reset);
|
||||
|
||||
|
@ -456,8 +455,6 @@ void fluid_voice_start(fluid_voice_t* voice)
|
|||
|
||||
fluid_voice_calculate_runtime_synthesis_parameters(voice);
|
||||
|
||||
voice->ref = fluid_profile_ref();
|
||||
|
||||
voice->status = FLUID_VOICE_ON;
|
||||
|
||||
/* Increment voice count */
|
||||
|
|
|
@ -105,10 +105,6 @@ struct _fluid_voice_t
|
|||
fluid_rvoice_t* overflow_rvoice; /* Used temporarily and only in overflow situations */
|
||||
int can_access_rvoice; /* False if rvoice is being rendered in separate thread */
|
||||
int can_access_overflow_rvoice; /* False if overflow_rvoice is being rendered in separate thread */
|
||||
|
||||
/* for debugging */
|
||||
int debug;
|
||||
double ref;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue