summaryrefslogtreecommitdiff
path: root/apps/gui/gwps-common.c
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2007-04-25 22:08:00 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2007-04-25 22:08:00 +0000
commit1cf2ec38b1d3fbbe62fab1daf39f617bb64516a9 (patch)
tree7cf670647d6b2f71be80854322daf80620e50247 /apps/gui/gwps-common.c
parent9db669e1af5443f654f92a6ee7257c365ec0f52a (diff)
downloadrockbox-1cf2ec38b1d3fbbe62fab1daf39f617bb64516a9.tar.gz
rockbox-1cf2ec38b1d3fbbe62fab1daf39f617bb64516a9.zip
Change some ifdefs for the recent backdrop changes (fixes the yellow builds) and move the backdrop files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13265 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/gwps-common.c')
-rw-r--r--apps/gui/gwps-common.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index 7f84be613b..5043b33ec0 100644
--- a/apps/gui/gwps-common.c
+++ b/apps/gui/gwps-common.c
@@ -49,13 +49,14 @@
49#include "bmp.h" 49#include "bmp.h"
50#include "atoi.h" 50#include "atoi.h"
51#endif 51#endif
52#if LCD_DEPTH > 1
53#include "backdrop.h"
54#endif
55#include "dsp.h" 52#include "dsp.h"
56#include "action.h" 53#include "action.h"
57#include "cuesheet.h" 54#include "cuesheet.h"
58 55
56#if (LCD_DEPTH > 1) || (defined(HAVE_LCD_REMOTE) && (LCD_REMOTE_DEPTH > 1))
57#include "backdrop.h"
58#endif
59
59#define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */ 60#define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */
60 /* 3% of 30min file == 54s step size */ 61 /* 3% of 30min file == 54s step size */
61#define MIN_FF_REWIND_STEP 500 62#define MIN_FF_REWIND_STEP 500