From e6923526d3d9ed28427e8beecb4f3b5bf2f87775 Mon Sep 17 00:00:00 2001 From: Amulya Kumar Sahoo Date: Sat, 7 Jun 2014 18:05:04 +0530 Subject: [PATCH] Fixed error in comment --- libraries/Robot_Control/Melody.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Robot_Control/Melody.cpp b/libraries/Robot_Control/Melody.cpp index 0341c555ef2..9ef964631be 100644 --- a/libraries/Robot_Control/Melody.cpp +++ b/libraries/Robot_Control/Melody.cpp @@ -40,7 +40,7 @@ void RobotControl::playMelody(char* script){ case 'C': playNote(202, time, modifier); break; // Play a C# case 'd': playNote(190, time, modifier); break; // Play a D case 'D': playNote(180, time, modifier); break; // Play a D# - case 'e': playNote(170, time, modifier); break; // Play an F + case 'e': playNote(170, time, modifier); break; // Play an E case 'f': playNote(160, time, modifier); break; // Play an F case 'F': playNote(151, time, modifier); break; // Play an F# case 'g': playNote(143, time, modifier); break; // Play a G @@ -97,4 +97,4 @@ void RobotControl::playFile(char* filename){ void RobotControl::stopPlayFile(){ melody.close(); -} \ No newline at end of file +}