summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 976d645b9e..6166be720c 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -410,7 +410,7 @@ static void mpeg_thread(void)
410 410
411 /* Make sure that the write pointer is at a word 411 /* Make sure that the write pointer is at a word
412 boundary */ 412 boundary */
413 mp3buf_write &= 0xfffffffe; 413 mp3buf_write = (mp3buf_write + 1) & 0xfffffffe;
414 414
415 if(new_file() < 0) 415 if(new_file() < 0)
416 { 416 {