diff options
author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-31 09:15:04 +0000 |
---|---|---|
committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-31 09:15:04 +0000 |
commit | 5cfec213509f7d9e3e3e0f2b97288a010899dbd9 (patch) | |
tree | 432957ad5dc8b45baf98e99bbe62979d804cf1f9 /apps/codecs/libgme/nsf_emu.c | |
parent | 7e14b935dfdcd808cfb0703d19a43efd11eeef16 (diff) |
Declare several libgme functions static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30394 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libgme/nsf_emu.c')
-rw-r--r-- | apps/codecs/libgme/nsf_emu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libgme/nsf_emu.c b/apps/codecs/libgme/nsf_emu.c index d4d5753460..a4873c81cb 100644 --- a/apps/codecs/libgme/nsf_emu.c +++ b/apps/codecs/libgme/nsf_emu.c @@ -330,7 +330,7 @@ void write_bank( struct Nsf_Emu* this, int bank, int data ) Cpu_map_code( &this->cpu, (bank + 6) * this->rom.bank_size, this->rom.bank_size, rom_data, false ); } -void map_memory( struct Nsf_Emu* this ) +static void map_memory( struct Nsf_Emu* this ) { // Map standard things Cpu_reset( &this->cpu, unmapped_code( this ) ); @@ -493,7 +493,7 @@ void Sound_set_tempo( struct Nsf_Emu* this, int t ) #endif } -inline void push_byte( struct Nsf_Emu* this, int b ) +static inline void push_byte( struct Nsf_Emu* this, int b ) { this->low_ram [0x100 + this->cpu.r.sp--] = b; } |