summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-10-19 11:43:13 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-10-19 11:43:13 +0000
commit4950b5583718bf4f995a3a0751bd400cfc155dca (patch)
tree68e2ebfa93fa4ee8eb7274f44a76326e82c44bb1 /firmware/mpeg.c
parent74a102dde2d03aaca61f19ccfc688db8b4b87db7 (diff)
Patch #6052 - More responsive skip on Archos
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11273 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 9fe3df224c..ce1d995461 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -2760,6 +2760,7 @@ void audio_resume(void)
void audio_next(void)
{
#ifndef SIMULATOR
+ queue_remove_from_head(&mpeg_queue, MPEG_NEED_DATA);
queue_post(&mpeg_queue, MPEG_NEXT, NULL);
#else /* SIMULATOR */
char* file;
@@ -2788,6 +2789,7 @@ void audio_next(void)
void audio_prev(void)
{
#ifndef SIMULATOR
+ queue_remove_from_head(&mpeg_queue, MPEG_NEED_DATA);
queue_post(&mpeg_queue, MPEG_PREV, NULL);
#else /* SIMULATOR */
char* file;