libgme: make local functions static where possible

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30280 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-08-11 19:04:28 +00:00
parent 39e4987ea5
commit b127949860
27 changed files with 128 additions and 123 deletions

View file

@ -23,7 +23,7 @@ void Sms_apu_volume( struct Sms_Apu* this, int vol )
Synth_volume( &this->synth, vol );
}
inline int calc_output( struct Sms_Apu* this, int i )
static inline int calc_output( struct Sms_Apu* this, int i )
{
int flags = this->ggstereo >> i;
return (flags >> 3 & 2) | (flags & 1);