Added missing closing parenthesis.

This commit is contained in:
Jonathan Chan 2018-02-04 16:07:46 -08:00
parent 162b0aef39
commit 34c844dba9
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -327,7 +327,7 @@ void sing(int* song, int* song_lengths, int length) {
for (int i = 0; i < length; i++) {
int note = song[i];
play(note); // set pitch
display(show(note); // show note
display(show(note)); // show note
display(acc(note)); // show if flat
// set delay by length of note
for (volatile unsigned int length = song_lengths[i]; length > 0; length--) {