forked from len0rd/rockbox
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
This commit is contained in:
parent
17e5399d3d
commit
791d425ff1
4 changed files with 5 additions and 5 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue