1
0
Fork 0
forked from len0rd/rockbox

Remove unused function audio_has_changed_track from apps/mpeg.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20893 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2009-05-09 18:27:25 +00:00
parent 9ca29354e1
commit 370455cc41

View file

@ -107,7 +107,6 @@ struct trackdata
static struct trackdata trackdata[MAX_TRACK_ENTRIES];
static unsigned int current_track_counter = 0;
static unsigned int last_track_counter = 0;
/* Play time of the previous track */
unsigned long prev_track_elapsed;
@ -2069,16 +2068,6 @@ struct mp3entry* audio_next_track()
#endif /* !SIMULATOR */
}
bool audio_has_changed_track(void)
{
if(last_track_counter != current_track_counter)
{
last_track_counter = current_track_counter;
return true;
}
return false;
}
#if CONFIG_CODEC == MAS3587F
#ifndef SIMULATOR
void audio_init_playback(void)