diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-09-07 14:09:11 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-09-07 14:09:11 +0000 |
| commit | 791d425ff1391772b23add013e69734a97eb9399 (patch) | |
| tree | d8ee987f8fe1cdddd00bb0b6dda33222240bb608 /apps/plugins/midi | |
| parent | 17e5399d3dc78f70a092fe2563e4fff59241bde2 (diff) | |
| download | rockbox-791d425ff1391772b23add013e69734a97eb9399.zip rockbox-791d425ff1391772b23add013e69734a97eb9399.tar.gz rockbox-791d425ff1391772b23add013e69734a97eb9399.tar.bz2 rockbox-791d425ff1391772b23add013e69734a97eb9399.tar.xz | |
plugins (doom, midi, rockboy): don't use non-static inline
some functions can be static -> static inline
some functions are external and can't be inlined -> remove inline
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28019 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/midi')
| -rw-r--r-- | apps/plugins/midi/sequencer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/midi/sequencer.c b/apps/plugins/midi/sequencer.c index 307643e..be26fdd 100644 --- a/apps/plugins/midi/sequencer.c +++ b/apps/plugins/midi/sequencer.c @@ -186,7 +186,7 @@ static inline void setPW(int ch, int msb, int lsb) computeDeltas(ch); } -inline void pressNote(int ch, int note, int vol) +static inline void pressNote(int ch, int note, int vol) { static int lastKill = 0; /* Silences all channels but one, for easy debugging, for me. */ |