1
0
Fork 0
forked from len0rd/rockbox

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

@ -44,7 +44,7 @@ void Z80_init( struct Z80_Cpu* this )
this->szpc [0x100] |= Z40;
}
inline void set_page( struct Z80_Cpu* this, int i, void* write, void const* read )
static inline void set_page( struct Z80_Cpu* this, int i, void* write, void const* read )
{
int offset = Z80_CPU_OFFSET( i * page_size );
byte * write2 = STATIC_CAST(byte *,write) - offset;