summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-17 12:46:21 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-17 12:46:21 +0000
commit8d013f55572436a58b633854c3ae50e4b4dff860 (patch)
tree5271ce67cc7503b8ec77f4032427d53e7d16498b
parent950534b13c8909bea08c6f92c0b36d921355749c (diff)
downloadrockbox-8d013f55572436a58b633854c3ae50e4b4dff860.tar.gz
rockbox-8d013f55572436a58b633854c3ae50e4b4dff860.zip
Skin engine: add "pitch" action to touch regions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22375 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/skin_engine/skin_parser.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index a06cb77a34..d2b8fdc259 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1099,7 +1099,7 @@ static struct touchaction touchactions[] = {
1099 {"menu", ACTION_WPS_MENU }, {"browse", ACTION_WPS_BROWSE }, 1099 {"menu", ACTION_WPS_MENU }, {"browse", ACTION_WPS_BROWSE },
1100 {"shuffle", ACTION_TOUCH_SHUFFLE }, {"repmode", ACTION_TOUCH_REPMODE }, 1100 {"shuffle", ACTION_TOUCH_SHUFFLE }, {"repmode", ACTION_TOUCH_REPMODE },
1101 {"quickscreen", ACTION_WPS_QUICKSCREEN },{"contextmenu", ACTION_WPS_CONTEXT }, 1101 {"quickscreen", ACTION_WPS_QUICKSCREEN },{"contextmenu", ACTION_WPS_CONTEXT },
1102 {"playlist", ACTION_WPS_VIEW_PLAYLIST }, 1102 {"playlist", ACTION_WPS_VIEW_PLAYLIST }, {"pitch", ACTION_WPS_PITCHSCREEN},
1103}; 1103};
1104static int parse_touchregion(const char *wps_bufptr, 1104static int parse_touchregion(const char *wps_bufptr,
1105 struct wps_token *token, struct wps_data *wps_data) 1105 struct wps_token *token, struct wps_data *wps_data)
@@ -1128,6 +1128,8 @@ static int parse_touchregion(const char *wps_bufptr,
1128 * repmode - cycle the repeat mode 1128 * repmode - cycle the repeat mode
1129 * quickscreen - go into the quickscreen 1129 * quickscreen - go into the quickscreen
1130 * contextmenu - open the context menu 1130 * contextmenu - open the context menu
1131 * playlist - go into the playlist
1132 * pitch - go into the pitchscreen
1131 */ 1133 */
1132 1134
1133 1135