summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMihail Zenkov <mihail.zenkov@gmail.com>2016-03-18 23:34:57 +0000
committerGerrit Rockbox <gerrit@rockbox.org>2016-03-18 21:39:37 +0100
commitfe9a3ceb0e09ae44d15f2636162ea534129b2137 (patch)
tree3bc39f309f1fd119359ae1c5f426ddbda270ddf6 /apps
parent123346b86a600dbe1e57273c0f333f6ecda16977 (diff)
downloadrockbox-fe9a3ceb0e09ae44d15f2636162ea534129b2137.tar.gz
rockbox-fe9a3ceb0e09ae44d15f2636162ea534129b2137.zip
GUI boost for any button
It improve responsiveness for all targets with frequency scaling. Change-Id: I72c94daf58cee10c1772decbd0443856c111cc47
Diffstat (limited to 'apps')
-rw-r--r--apps/action.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/action.c b/apps/action.c
index 856bc0810c..eae00f5d18 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -224,9 +224,7 @@ static int get_action_worker(int context, int timeout,
static struct timeout gui_unboost;
/* Boost the CPU in case of wheel scrolling activity in the defined contexts.
* Call unboost with a timeout of GUI_BOOST_TIMEOUT. */
- if ((button&(BUTTON_SCROLL_BACK|BUTTON_SCROLL_FWD)) &&
- (context == CONTEXT_STD || context == CONTEXT_LIST ||
- context == CONTEXT_MAINMENU || context == CONTEXT_TREE))
+ if (button != BUTTON_NONE)
{
gui_boost(true);
timeout_register(&gui_unboost, gui_unboost_callback, GUI_BOOST_TIMEOUT, 0);