Skip to content

Commit 0a2b319

Browse files
committed
cue respects beat length override
1 parent 590f1ae commit 0a2b319

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

cue/src/cue.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,10 @@ impl Cue {
223223
/ length as f32;
224224
beats_left_in_change = length;
225225
}
226+
Some(EventDescription::BeatLengthOverride { length }) => {
227+
beat.length = length;
228+
break;
229+
}
226230

227231
_ => {}
228232
}

0 commit comments

Comments
 (0)