summaryrefslogtreecommitdiffstats
path: root/apps/action.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-03-11 12:32:29 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-03-11 12:32:29 +0000
commit04ea446edc56d0891f458ffa8f2b0e2616e443df (patch)
tree9363bdd4ffe834e8024b18875e2e851b2fd39090 /apps/action.c
parent2eefb5acb847eeb2d10bac860d37c4cef00be67b (diff)
downloadrockbox-04ea446edc56d0891f458ffa8f2b0e2616e443df.tar.gz
rockbox-04ea446edc56d0891f458ffa8f2b0e2616e443df.zip
Fix bug in action_getstatus() where it didnt store the last action so it
never returned ACTION_REPEAT Fix backlight fade out options to include 3s,5s,10s git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12722 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.c')
-rw-r--r--apps/action.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/action.c b/apps/action.c
index 7667e4dd12..31770cdb4e 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -192,6 +192,7 @@ static int get_action_worker(int context, int timeout,
repeated = false;
last_button = button;
+ last_action = ret;
return ret;
}