diff options
Diffstat (limited to 'src/notes.h')
-rw-r--r-- | src/notes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/notes.h b/src/notes.h index ed6b3e6..bab7117 100644 --- a/src/notes.h +++ b/src/notes.h @@ -16,7 +16,8 @@ static float note_B[] = {30.87, 61.74, 123.47, 246.94, 493.88, 987.77, 1975.53, static float *notes[12] = {note_C, note_Db, note_D, note_Eb, note_E, note_F, note_Gb, note_G, note_Ab, note_A, note_Bb, note_B }; -static char * +// do I really want inline? used to be static +inline char * int_to_note(int n) { switch (n) { |