summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/hes_emu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/hes_emu.c')
-rw-r--r--apps/codecs/libgme/hes_emu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libgme/hes_emu.c b/apps/codecs/libgme/hes_emu.c
index 10ec9a2128..3ef87d9f71 100644
--- a/apps/codecs/libgme/hes_emu.c
+++ b/apps/codecs/libgme/hes_emu.c
@@ -31,7 +31,7 @@ int const fade_shift = 8; // fade ends with gain at 1.0 / (1 << fade_shift)
31 31
32const char gme_wrong_file_type [] ICONST_ATTR = "Wrong file type for this emulator"; 32const char gme_wrong_file_type [] ICONST_ATTR = "Wrong file type for this emulator";
33 33
34void clear_track_vars( struct Hes_Emu* this ) 34static void clear_track_vars( struct Hes_Emu* this )
35{ 35{
36 this->current_track_ = -1; 36 this->current_track_ = -1;
37 this->out_time = 0; 37 this->out_time = 0;
@@ -632,7 +632,7 @@ blargg_err_t Hes_start_track( struct Hes_Emu* this, int track )
632 632
633// Tell/Seek 633// Tell/Seek
634 634
635blargg_long msec_to_samples( blargg_long msec, long sample_rate ) 635static blargg_long msec_to_samples( blargg_long msec, long sample_rate )
636{ 636{
637 blargg_long sec = msec / 1000; 637 blargg_long sec = msec / 1000;
638 msec -= sec * 1000; 638 msec -= sec * 1000;