From 13cbade08a07296d92e7a7d3e20475de0032cba1 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Wed, 31 Aug 2011 19:19:49 +0000 Subject: Update libgme to Blargg's Game_Music_Emu 0.6-pre. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30397 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libgme/sms_fm_apu.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/codecs/libgme/sms_fm_apu.h') diff --git a/apps/codecs/libgme/sms_fm_apu.h b/apps/codecs/libgme/sms_fm_apu.h index cf8cd6c5cb..00bc2b409c 100644 --- a/apps/codecs/libgme/sms_fm_apu.h +++ b/apps/codecs/libgme/sms_fm_apu.h @@ -25,19 +25,19 @@ void Fm_apu_create( struct Sms_Fm_Apu* this ); static inline bool Fm_apu_supported( void ) { return Ym2413_supported(); } blargg_err_t Fm_apu_init( struct Sms_Fm_Apu* this, int clock_rate, int sample_rate ); - + static inline void Fm_apu_set_output( struct Sms_Fm_Apu* this, struct Blip_Buffer* b ) { this->output_ = b; } static inline void Fm_apu_volume( struct Sms_Fm_Apu* this, int v ) { Synth_volume( &this->synth, (v*2) / 5 / 4096 ); } - + void Fm_apu_reset( struct Sms_Fm_Apu* this ); - + static inline void Fm_apu_write_addr( struct Sms_Fm_Apu* this, int data ) { this->addr = data; } void Fm_apu_write_data( struct Sms_Fm_Apu* this, blip_time_t, int data ); - + void Fm_apu_end_frame( struct Sms_Fm_Apu* this, blip_time_t t ); #endif -- cgit v1.2.3