summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/mpeg.c2
-rw-r--r--apps/playback.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/mpeg.c b/apps/mpeg.c
index 0b6a5894bd..e28260b6a7 100644
--- a/apps/mpeg.c
+++ b/apps/mpeg.c
@@ -111,7 +111,7 @@ static struct trackdata trackdata[MAX_TRACK_ENTRIES];
111static unsigned int current_track_counter = 0; 111static unsigned int current_track_counter = 0;
112 112
113/* Play time of the previous track */ 113/* Play time of the previous track */
114static unsigned long prev_track_elapsed; 114unsigned long prev_track_elapsed;
115 115
116#ifndef SIMULATOR 116#ifndef SIMULATOR
117static int track_read_idx = 0; 117static int track_read_idx = 0;
diff --git a/apps/playback.c b/apps/playback.c
index b38ae7acf1..57ed3bdb96 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -24,7 +24,7 @@
24 * play whilst audio is paused */ 24 * play whilst audio is paused */
25 25
26//#include <stdio.h> 26//#include <stdio.h>
27//#include <string.h> 27#include <string.h>
28//#include <ctype.h> 28//#include <ctype.h>
29 29
30#include "playback.h" 30#include "playback.h"
@@ -50,6 +50,7 @@
50//#include "mp3_playback.h" 50//#include "mp3_playback.h"
51#include "usb.h" 51#include "usb.h"
52//#include "storage.h" 52//#include "storage.h"
53#include "ata.h"
53//#include "screens.h" 54//#include "screens.h"
54#include "playlist.h" 55#include "playlist.h"
55#include "pcmbuf.h" 56#include "pcmbuf.h"