mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +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;
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue