mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
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:
parent
64354df3c6
commit
14802c0547
1 changed files with 1 additions and 1 deletions
|
@ -464,7 +464,7 @@ typedef struct {
|
||||||
int8_t lfo_depth, drive;
|
int8_t lfo_depth, drive;
|
||||||
double resonance, lfo_freq, offset_freq, dry, wet;
|
double resonance, lfo_freq, offset_freq, dry, wet;
|
||||||
int32_t dryi, weti, fil_count, fil_cycle;
|
int32_t dryi, weti, fil_count, fil_cycle;
|
||||||
lfo lfo;
|
struct lfo lfo;
|
||||||
filter_moog_dist fil0, fil1;
|
filter_moog_dist fil0, fil1;
|
||||||
} InfoXGAutoWah;
|
} InfoXGAutoWah;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue