Fixed GCC compilation error

src/sound/timiditypp/reverb.h:467:6: error: declaration of ‘TimidityPlus::lfo TimidityPlus::<anonymous struct>::lfo’ [-fpermissive]
src/sound/timiditypp/reverb.h:61:8: error: changes meaning of ‘lfo’ from ‘struct TimidityPlus::lfo’ [-fpermissive]
This commit is contained in:
alexey.lysiuk 2018-02-26 13:10:32 +02:00
parent 64354df3c6
commit 14802c0547
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ typedef struct {
int8_t lfo_depth, drive;
double resonance, lfo_freq, offset_freq, dry, wet;
int32_t dryi, weti, fil_count, fil_cycle;
lfo lfo;
struct lfo lfo;
filter_moog_dist fil0, fil1;
} InfoXGAutoWah;