diff options
author | Brandon Low <lostlogic@rockbox.org> | 2006-04-18 18:33:09 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@rockbox.org> | 2006-04-18 18:33:09 +0000 |
commit | 2b18727a8abe08cf5f9d267d5f664bff13bd1cb2 (patch) | |
tree | 2faab6295878e24412055c88b704b582a13af971 /apps/gui | |
parent | 359189efe3bf4a80c181a69f62c1945231ecd88f (diff) |
Fix dir skipping with new playback arch. Enable dir skipping on ipod with a couple of difficult combos (select|right/left) or short-long left / short-long right. The latter causes stuck in pause sometimes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9720 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r-- | apps/gui/gwps.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/gwps.h b/apps/gui/gwps.h index d9f7224681..0c170f1a7e 100644 --- a/apps/gui/gwps.h +++ b/apps/gui/gwps.h @@ -198,6 +198,9 @@ #define WPS_CONTEXT (BUTTON_SELECT | BUTTON_REPEAT) #define WPS_QUICK (BUTTON_MENU | BUTTON_REPEAT) +#define WPS_NEXT_DIR (BUTTON_SELECT | BUTTON_RIGHT) +#define WPS_PREV_DIR (BUTTON_SELECT | BUTTON_LEFT) + #ifdef AB_REPEAT_ENABLE #define WPS_AB_SET_A_MARKER (BUTTON_MENU | BUTTON_LEFT) #define WPS_AB_SET_B_MARKER (BUTTON_MENU | BUTTON_RIGHT) |