summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2009-10-31 19:49:58 +0000
committerJeffrey Goode <jeffg7@gmail.com>2009-10-31 19:49:58 +0000
commit03c5cb650325959f72378fa594975db23512d0ed (patch)
treee72c5eb5b8e1c1d89b0d16fcd99ad30711afe91e /apps
parentcf01942a57d494dd263e744e435600f9deea2c63 (diff)
downloadrockbox-03c5cb650325959f72378fa594975db23512d0ed.tar.gz
rockbox-03c5cb650325959f72378fa594975db23512d0ed.zip
Fix yellow, defines
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23446 a1c6a512-1295-4272-9138-f99709370657
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"