1
0
Fork 0
forked from len0rd/rockbox

libgme: make local functions static where possible

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30280 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-08-11 19:04:28 +00:00
parent 39e4987ea5
commit b127949860
27 changed files with 128 additions and 123 deletions

View file

@ -31,7 +31,7 @@ int const fade_shift = 8; // fade ends with gain at 1.0 / (1 << fade_shift)
const char gme_wrong_file_type [] ICONST_ATTR = "Wrong file type for this emulator";
void clear_track_vars( struct Hes_Emu* this )
static void clear_track_vars( struct Hes_Emu* this )
{
this->current_track_ = -1;
this->out_time = 0;
@ -632,7 +632,7 @@ blargg_err_t Hes_start_track( struct Hes_Emu* this, int track )
// Tell/Seek
blargg_long msec_to_samples( blargg_long msec, long sample_rate )
static blargg_long msec_to_samples( blargg_long msec, long sample_rate )
{
blargg_long sec = msec / 1000;
msec -= sec * 1000;