Skip to content

Commit

Permalink
Merge pull request godotengine#99186 from PhairZ/wheels-of-the-bus-go…
Browse files Browse the repository at this point in the history
…-round-and-round

Fix `fade_beats` defined as `int` in `audio_stream_interactive.h`
  • Loading branch information
Repiteo committed Dec 5, 2024
2 parents 637239e + 8c4a9ad commit 7bff6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/interactive_music/audio_stream_interactive.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class AudioStreamInteractive : public AudioStream {
TransitionFromTime from_time = TRANSITION_FROM_TIME_NEXT_BEAT;
TransitionToTime to_time = TRANSITION_TO_TIME_START;
FadeMode fade_mode = FADE_AUTOMATIC;
int fade_beats = 1;
float fade_beats = 1;
bool use_filler_clip = false;
int filler_clip = 0;
bool hold_previous = false;
Expand Down

0 comments on commit 7bff6c8

Please sign in to comment.