summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/nsf_emu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/nsf_emu.c')
-rw-r--r--apps/codecs/libgme/nsf_emu.c4
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 )
330 Cpu_map_code( &this->cpu, (bank + 6) * this->rom.bank_size, this->rom.bank_size, rom_data, false ); 330 Cpu_map_code( &this->cpu, (bank + 6) * this->rom.bank_size, this->rom.bank_size, rom_data, false );
331} 331}
332 332
333void map_memory( struct Nsf_Emu* this ) 333static void map_memory( struct Nsf_Emu* this )
334{ 334{
335 // Map standard things 335 // Map standard things
336 Cpu_reset( &this->cpu, unmapped_code( this ) ); 336 Cpu_reset( &this->cpu, unmapped_code( this ) );
@@ -493,7 +493,7 @@ void Sound_set_tempo( struct Nsf_Emu* this, int t )
493#endif 493#endif
494} 494}
495 495
496inline void push_byte( struct Nsf_Emu* this, int b ) 496static inline void push_byte( struct Nsf_Emu* this, int b )
497{ 497{
498 this->low_ram [0x100 + this->cpu.r.sp--] = b; 498 this->low_ram [0x100 + this->cpu.r.sp--] = b;
499} 499}