From 66d0e5056b1505fa66ee7796a06ae9708c3d08cf Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Tue, 5 Oct 2021 10:33:24 -0600 Subject: [PATCH] Beethoven correct key --- appmgr/src/sound.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/appmgr/src/sound.rs b/appmgr/src/sound.rs index 301ae0a27..dd09983f9 100644 --- a/appmgr/src/sound.rs +++ b/appmgr/src/sound.rs @@ -378,15 +378,15 @@ pub const MARIO_COIN: Song<[(Option, TimeSlice); 2]> = song!(400, [ ]); pub const BEETHOVEN: Song<[(Option, TimeSlice); 9]> = song!(216, [ - note(E, 5, Eighth); - note(E, 5, Eighth); - note(E, 5, Eighth); - note(C, 5, Half); + note(G, 5, Eighth); + note(G, 5, Eighth); + note(G, 5, Eighth); + note(Eb, 5, Half); rest(Half); - note(D, 5, Eighth); - note(D, 5, Eighth); - note(D, 5, Eighth); - note(B, 4, Half); + note(F, 5, Eighth); + note(F, 5, Eighth); + note(F, 5, Eighth); + note(D, 4, Half); ]); lazy_static::lazy_static! {