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

@ -17,7 +17,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
#include "blargg_source.h"
inline void set_code_page( struct Nes_Cpu* this, int i, void const* p )
static inline void set_code_page( struct Nes_Cpu* this, int i, void const* p )
{
byte const* p2 = STATIC_CAST(byte const*,p) - NES_CPU_OFFSET( i * page_size );
this->cpu_state->code_map [i] = p2;