From 7756841b1e70b8b80c6843e3dbfbd0b6bbcd711b Mon Sep 17 00:00:00 2001 From: Chris Guida Date: Tue, 5 Oct 2021 12:43:39 -0500 Subject: [PATCH] move beethoven down an octave because octave 5 wasn't ominous enough --- 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 c4bc5618a..a1ea7fb12 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(G, 5, Eighth); - note(G, 5, Eighth); - note(G, 5, Eighth); - note(Eb, 5, Half); + note(G, 4, Eighth); + note(G, 4, Eighth); + note(G, 4, Eighth); + note(Eb, 4, Half); rest(Half); - note(F, 5, Eighth); - note(F, 5, Eighth); - note(F, 5, Eighth); - note(D, 5, Half); + note(F, 4, Eighth); + note(F, 4, Eighth); + note(F, 4, Eighth); + note(D, 4, Half); ]); lazy_static::lazy_static! {