summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/ay_apu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/ay_apu.h')
-rw-r--r--apps/codecs/libgme/ay_apu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libgme/ay_apu.h b/apps/codecs/libgme/ay_apu.h
index a18e3e7860..3df6ba1118 100644
--- a/apps/codecs/libgme/ay_apu.h
+++ b/apps/codecs/libgme/ay_apu.h
@@ -46,8 +46,8 @@ void Ay_apu_init( struct Ay_Apu* this );
46static inline void Ay_apu_write_addr( struct Ay_Apu* this, int data ) { this->addr_ = data & 0x0F; } 46static inline void Ay_apu_write_addr( struct Ay_Apu* this, int data ) { this->addr_ = data & 0x0F; }
47 47
48// Emulates to time t, then writes to current data register 48// Emulates to time t, then writes to current data register
49void run_until( struct Ay_Apu* this, blip_time_t final_end_time ) ICODE_ATTR;; 49void run_until( struct Ay_Apu* this, blip_time_t final_end_time );;
50void write_data_( struct Ay_Apu* this, int addr, int data ) ICODE_ATTR; 50void write_data_( struct Ay_Apu* this, int addr, int data );
51static inline void Ay_apu_write_data( struct Ay_Apu* this, blip_time_t t, int data ) { run_until( this, t ); write_data_( this, this->addr_, data ); } 51static inline void Ay_apu_write_data( struct Ay_Apu* this, blip_time_t t, int data ) { run_until( this, t ); write_data_( this, this->addr_, data ); }
52 52
53// Reads from current data register 53// Reads from current data register