summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-20 13:17:24 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-20 13:17:24 +0000
commiteada0907ff2eb19d1e3b80d6512bfd50aff26d42 (patch)
treef3e1bafb26634d1e0f5000b78cc735024d471412 /apps
parentdc8af759ce9134b8bcf905c65b1d2fd9b53ed4f5 (diff)
downloadrockbox-eada0907ff2eb19d1e3b80d6512bfd50aff26d42.tar.gz
rockbox-eada0907ff2eb19d1e3b80d6512bfd50aff26d42.zip
fix ffwd/rewind on touchscreen targets using regions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26991 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/wps.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 0c7975a01a..0a8ce899c5 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -360,6 +360,9 @@ bool ffwd_rew(int button)
360#ifdef HAVE_TOUCHSCREEN 360#ifdef HAVE_TOUCHSCREEN
361 if (button == ACTION_TOUCHSCREEN) 361 if (button == ACTION_TOUCHSCREEN)
362 button = wps_get_touchaction(gui_wps[SCREEN_MAIN].data); 362 button = wps_get_touchaction(gui_wps[SCREEN_MAIN].data);
363 if (button != ACTION_WPS_SEEKFWD &&
364 button != ACTION_WPS_SEEKBACK)
365 button = ACTION_WPS_STOPSEEK;
363#endif 366#endif
364 } 367 }
365 } 368 }