diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-01-28 16:36:56 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-01-28 16:36:56 -0500 |
commit | 12af03cd62732bd63c0bc482d63f59ee97bc17f2 (patch) | |
tree | 6cfa0afffd654cca79beee425826965f06b6d2d2 /src/bard_music.c | |
parent | 89b85a49ec30d613244bd5c76f0a86ab1022bc48 (diff) |
Label bard music pitch table
Diffstat (limited to 'src/bard_music.c')
-rw-r--r-- | src/bard_music.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bard_music.c b/src/bard_music.c index d1da97a6c..ad065249a 100644 --- a/src/bard_music.c +++ b/src/bard_music.c @@ -8,9 +8,9 @@ #include "data/bard_music/default_sound.h" #include "data/bard_music/length_table.h" -s16 CalcWordPitch(int arg0, int songPos) +static s16 CalcWordPitch(int arg0, int songPos) { - return gBardSoundPitchTables[arg0][songPos]; + return sBardSoundPitchTables[arg0][songPos]; } const struct BardSound *GetWordSounds(u16 word) |