summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index d19cdf65e4..8e9b008e11 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -943,7 +943,7 @@ static void mpeg_thread(void)
943 943
944 diffpos = curpos - newpos; 944 diffpos = curpos - newpos;
945 945
946 if(diffpos >= 0 && diffpos < mp3buflen) 946 if(!filling && diffpos >= 0 && diffpos < mp3buflen)
947 { 947 {
948 /* We are changing to a position that's already in 948 /* We are changing to a position that's already in
949 memory */ 949 memory */