summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/mpeg.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/mpeg.c b/apps/mpeg.c
index 5ebf58f..0353bcc 100644
--- a/apps/mpeg.c
+++ b/apps/mpeg.c
@@ -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)