Skip to content

Commit 7bff6c8

Browse files
committed
Merge pull request godotengine#99186 from PhairZ/wheels-of-the-bus-go-round-and-round
Fix `fade_beats` defined as `int` in `audio_stream_interactive.h`
2 parents 637239e + 8c4a9ad commit 7bff6c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/interactive_music/audio_stream_interactive.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class AudioStreamInteractive : public AudioStream {
100100
TransitionFromTime from_time = TRANSITION_FROM_TIME_NEXT_BEAT;
101101
TransitionToTime to_time = TRANSITION_TO_TIME_START;
102102
FadeMode fade_mode = FADE_AUTOMATIC;
103-
int fade_beats = 1;
103+
float fade_beats = 1;
104104
bool use_filler_clip = false;
105105
int filler_clip = 0;
106106
bool hold_previous = false;

0 commit comments

Comments
 (0)