summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-05-09 18:27:25 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-05-09 18:27:25 +0000
commit370455cc4159c2a780bb4c917b42490f6512f7df (patch)
tree1c815a863c42afc8dcd046c40970ebc69e6ad917 /apps
parent9ca29354e1de9859044bdcfce0309b0509bafb90 (diff)
downloadrockbox-370455cc4159c2a780bb4c917b42490f6512f7df.zip
rockbox-370455cc4159c2a780bb4c917b42490f6512f7df.tar.gz
rockbox-370455cc4159c2a780bb4c917b42490f6512f7df.tar.bz2
rockbox-370455cc4159c2a780bb4c917b42490f6512f7df.tar.xz
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
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)