From b9de5755d147fdc0a1822d4a9f599304b2f8813c Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Thu, 12 May 2022 11:45:53 -0600 Subject: [PATCH] fix error with circle of fifths type --- backend/src/sound.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/sound.rs b/backend/src/sound.rs index 87e8c65ee..69b7b2f30 100644 --- a/backend/src/sound.rs +++ b/backend/src/sound.rs @@ -404,7 +404,7 @@ pub const BEETHOVEN: Song<[(Option, TimeSlice); 9]> = song!(216, [ ]); lazy_static::lazy_static! { - pub static ref CIRCLE_OF_5THS_SHORT: Song>> = Song { + pub static ref CIRCLE_OF_5THS_SHORT: Song, TimeSlice)>> = Song { tempo_qpm: 300, note_sequence: CircleOf::new( &FIFTH, @@ -414,7 +414,7 @@ lazy_static::lazy_static! { }, TimeSlice::Triplet(&TimeSlice::Eighth), ) - .take(6), + .take(6).collect(), }; pub static ref CIRCLE_OF_4THS_SHORT: Song>> = Song { tempo_qpm: 300,