summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@rockbox.org>2006-01-21 23:43:57 +0000
committerBrandon Low <lostlogic@rockbox.org>2006-01-21 23:43:57 +0000
commit8d5a6609a33f3269bc80975b81e0e859a056d952 (patch)
tree9bef78c29941956fc6473f58e1657624c150f2d5 /apps/screens.c
parent0a9179cb0a4bda8191fcfcb45404ea361fcacdc5 (diff)
downloadrockbox-8d5a6609a33f3269bc80975b81e0e859a056d952.tar.gz
rockbox-8d5a6609a33f3269bc80975b81e0e859a056d952.zip
AB-repeat mode for software codecs. Accessible through menu as a repeat mode, with buttom mappings much like those on other rockbox targets for now.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8409 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 2cb0fb576a..9897e2541d 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -46,7 +46,6 @@
46#include "debug.h" 46#include "debug.h"
47#include "led.h" 47#include "led.h"
48#include "sound.h" 48#include "sound.h"
49#include "abrepeat.h"
50#include "gwps-common.h" 49#include "gwps-common.h"
51#include "splash.h" 50#include "splash.h"
52#include "statusbar.h" 51#include "statusbar.h"
@@ -515,7 +514,7 @@ bool quick_screen_quick(int button_enter)
515 [REPEAT_ALL]={ STR(LANG_REPEAT_ALL) }, 514 [REPEAT_ALL]={ STR(LANG_REPEAT_ALL) },
516 [REPEAT_ONE]={ STR(LANG_REPEAT_ONE) }, 515 [REPEAT_ONE]={ STR(LANG_REPEAT_ONE) },
517 [REPEAT_SHUFFLE]={ STR(LANG_SHUFFLE) }, 516 [REPEAT_SHUFFLE]={ STR(LANG_SHUFFLE) },
518#ifdef AB_REPEAT_ENABLE 517#if (AB_REPEAT_ENABLE == 1)
519 [REPEAT_AB]={ STR(LANG_REPEAT_AB) } 518 [REPEAT_AB]={ STR(LANG_REPEAT_AB) }
520#endif 519#endif
521 }; 520 };