summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/sms_apu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/sms_apu.h')
-rw-r--r--apps/codecs/libgme/sms_apu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libgme/sms_apu.h b/apps/codecs/libgme/sms_apu.h
index e0225138e5..f887dc611e 100644
--- a/apps/codecs/libgme/sms_apu.h
+++ b/apps/codecs/libgme/sms_apu.h
@@ -43,14 +43,14 @@ void Sms_apu_init( struct Sms_Apu* this );
43void Sms_apu_set_output( struct Sms_Apu* this, int i, struct Blip_Buffer* center, struct Blip_Buffer* left, struct Blip_Buffer* right); 43void Sms_apu_set_output( struct Sms_Apu* this, int i, struct Blip_Buffer* center, struct Blip_Buffer* left, struct Blip_Buffer* right);
44 44
45// Emulates to time t, then writes data to Game Gear left/right assignment byte 45// Emulates to time t, then writes data to Game Gear left/right assignment byte
46void Sms_apu_write_ggstereo( struct Sms_Apu* this, blip_time_t t, int data ) ICODE_ATTR; 46void Sms_apu_write_ggstereo( struct Sms_Apu* this, blip_time_t t, int data );
47 47
48// Emulates to time t, then writes data 48// Emulates to time t, then writes data
49void Sms_apu_write_data( struct Sms_Apu* this, blip_time_t t, int data ) ICODE_ATTR; 49void Sms_apu_write_data( struct Sms_Apu* this, blip_time_t t, int data );
50 50
51// Emulates to time t, then subtracts t from the current time. 51// Emulates to time t, then subtracts t from the current time.
52// OK if previous write call had time slightly after t. 52// OK if previous write call had time slightly after t.
53void Sms_apu_end_frame( struct Sms_Apu* this, blip_time_t t ) ICODE_ATTR; 53void Sms_apu_end_frame( struct Sms_Apu* this, blip_time_t t );
54 54
55// More features 55// More features
56 56